Skip to content
Snippets Groups Projects
Commit 7becbd53 authored by Christian Pointner's avatar Christian Pointner
Browse files

Merge branch 'master' into stable

parents 17f110df f49a48b8
No related branches found
No related tags found
No related merge requests found
......@@ -198,11 +198,11 @@ def json_day_schedule(request, year=None, month=None, day=None):
timeslots = TimeSlot.objects.get_24h_timeslots(today)
schedule = []
for ts in timeslots:
entry = { 'start': ts.start.strftime('%H:%M:%S'), 'title': ts.programslot.show.name, 'id': -1 }
entry = { 'start': ts.start.strftime('%H:%M:%S'), 'title': ts.programslot.show.name, 'id': ts.programslot.show.id, 'automation-id': -1 }
if ts.programslot.automation_id:
entry['id'] = ts.programslot.automation_id
entry['automation-id'] = ts.programslot.automation_id
elif ts.programslot.show.automation_id:
entry['id'] = ts.programslot.show.automation_id
entry['automation-id'] = ts.programslot.show.automation_id
schedule.append(entry)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment