Feat: schedule added to dashboard view. logo rework

This commit is contained in:
serversdwn
2026-01-23 19:07:42 +00:00
parent eeda94926f
commit 38c600aca3
21 changed files with 317 additions and 16 deletions

View File

@@ -493,9 +493,18 @@ async def get_project_schedules(
"actions": [],
}
# Parse module_response for display
result_data = None
if schedule.module_response:
try:
result_data = json.loads(schedule.module_response)
except json.JSONDecodeError:
pass
schedules_by_date[date_key]["actions"].append({
"schedule": schedule,
"location": location,
"result": result_data,
})
return templates.TemplateResponse("partials/projects/schedule_list.html", {