Private
Public Access
1
0

tested Deep Water

This commit is contained in:
2025-05-12 16:24:19 +02:00
parent 00d998cf8e
commit 94ce95bb5b
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@@ -4305,9 +4305,9 @@ def nextweekplan_view(request):
url = "http://localhost:8898/next-week-plan/" url = "http://localhost:8898/next-week-plan/"
response = requests.post(url, data=post_data) response = requests.post(url, data=post_data)
data = response.json()
if response.status_code in [200,201]: if response.status_code in [200,201]:
data = response.json()
if delete_existing: if delete_existing:
remove_next_week_sessions(r) remove_next_week_sessions(r)
create_next_week_from_json(data, r) create_next_week_from_json(data, r)