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

also include pv-id in day-schedule export

parent 179a462b
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.
Please register or to comment