Skip to content
Snippets Groups Projects
Commit 9c1dca98 authored by Ernesto Rico Schmidt's avatar Ernesto Rico Schmidt
Browse files

Remove is_repetition field from, add repetition_of field to views.

parent 939a1882
No related branches found
No related tags found
No related merge requests found
......@@ -146,7 +146,7 @@ def json_playout(request):
schedule = []
for ts in timeslots:
is_repetition = " " + _("REP") if ts.schedule.is_repetition is True else ""
is_repetition = " " + _("REP") if ts.schedule.repetition_of else ""
hosts = ", ".join(ts.show.hosts.values_list("name", flat=True))
categories = ", ".join(ts.show.category.values_list("name", flat=True))
......@@ -607,7 +607,7 @@ class APITimeSlotViewSet(
# We do this because the Dashboard needs to update the repetition timeslot as well
# but with another playlist containing the recording instead of the original playlist
ts = TimeSlot.objects.filter(show=show_pk, start__gt=timeslot.start)[0]
if ts.is_repetition:
if ts.repetition_of:
serializer = TimeSlotSerializer(ts)
return Response(serializer.data)
......
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