diff options
author | Christian Pointner <equinox@helsinki.at> | 2021-03-01 10:45:23 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2021-03-01 10:45:23 (GMT) |
commit | 82cd389025255354027134a7ba0dd2f41faa8fdc (patch) | |
tree | 74092e34afd69a6d2f0afbb83bbb1e0951b8f49a /program/templates/v2/current_show.html | |
parent | eee8713edf499865dee264d0c3a8947c752b02a4 (diff) | |
parent | b23c473e3af9e7c4e5c7aee6bfc93cde40737d94 (diff) |
Merge branch 'new-homepage' into stable
Diffstat (limited to 'program/templates/v2/current_show.html')
-rw-r--r-- | program/templates/v2/current_show.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/program/templates/v2/current_show.html b/program/templates/v2/current_show.html index 3ffe8c4..ab5f843 100644 --- a/program/templates/v2/current_show.html +++ b/program/templates/v2/current_show.html @@ -10,7 +10,7 @@ <li id="previous" class="bf-{{ previous_timeslot.show.broadcastformat.slug }}"> <div class="time">{{ previous_timeslot.start|date:"H:i" }}</div> <div class="show-name"> - <a href="{% url "timeslot-detail" previous_timeslot.id %}">{{ previous_timeslot.show.name }}</a> + <a href="{% url "timeslot-detail-v2" previous_timeslot.id %}">{{ previous_timeslot.show.name }}</a> </div> <div class="show-content"> </div> @@ -20,7 +20,7 @@ <li id="current" class="bf-{{ current_timeslot.show.broadcastformat.slug }}"> <div class="time">{{ current_timeslot.start|date:"H:i" }}</div> <div class="show-name"> - <a href="{% url "timeslot-detail" current_timeslot.id %}">{{ current_timeslot.show.name }}</a> + <a href="{% url "timeslot-detail-v2" current_timeslot.id %}">{{ current_timeslot.show.name }}</a> </div> <div class="show-content"> {% if current_timeslot.note %} @@ -35,7 +35,7 @@ <li id="next" class="bf-{{ next_timeslot.show.broadcastformat.slug }}"> <div class="time">{{ next_timeslot.start|date:"H:i" }}</div> <div class="show-name"> - <a href="{% url "timeslot-detail" next_timeslot.id %}">{{ next_timeslot.show.name }}</a> + <a href="{% url "timeslot-detail-v2" next_timeslot.id %}">{{ next_timeslot.show.name }}</a> </div> <div class="show-content"> </div> @@ -45,7 +45,7 @@ <li id="after_next" class="bf-{{ after_next_timeslot.show.broadcastformat.slug }}"> <div class="timer">{{ after_next_timeslot.start|date:"H:i" }}</div> <div class="show-name"> - <a href="{% url "timeslot-detail" after_next_timeslot.id %}">{{ after_next_timeslot.show.name }}</a> + <a href="{% url "timeslot-detail-v2" after_next_timeslot.id %}">{{ after_next_timeslot.show.name }}</a> </div> <div class="show-content"> </div> |