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

Remove is_repetition field from, add repetition_of field to views.

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