Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
steering
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AURA
steering
Commits
d22d03bb
Commit
d22d03bb
authored
2 years ago
by
Ernesto Rico Schmidt
Browse files
Options
Downloads
Patches
Plain Diff
Remove is_repetition field from, add repetition_of field to views.
parent
293950e2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
program/views.py
+2
-2
2 additions, 2 deletions
program/views.py
with
2 additions
and
2 deletions
program/views.py
+
2
−
2
View file @
d22d03bb
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment