diff options
author | Christian Pointner <equinox@helsinki.at> | 2021-03-01 10:44:28 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2021-03-01 10:44:28 (GMT) |
commit | b23c473e3af9e7c4e5c7aee6bfc93cde40737d94 (patch) | |
tree | 74092e34afd69a6d2f0afbb83bbb1e0951b8f49a /program/templates/v2/recommendation.html | |
parent | 850f92794a2571f44fd95f53a3f96f5ea659b3a4 (diff) |
fix vew names and url tag parameters for v2 templates
Diffstat (limited to 'program/templates/v2/recommendation.html')
-rw-r--r-- | program/templates/v2/recommendation.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/templates/v2/recommendation.html b/program/templates/v2/recommendation.html index 36b7c02..3dfeed2 100644 --- a/program/templates/v2/recommendation.html +++ b/program/templates/v2/recommendation.html @@ -10,7 +10,7 @@ <li class="bf-{{ recommendation.show.broadcastformat.slug }}"> <div class="time">{{ recommendation.start|date:"d.m. H:i" }} - {{ recommendation.end|date:"H:i" }}</td> <div class="show-name"> - <a href="{% url "timeslot-detail" recommendation.id %}">{{ recommendation.show.name }}</a> + <a href="{% url "timeslot-detail-v2" recommendation.id %}">{{ recommendation.show.name }}</a> </div> <div class="show-content"> {% if recommendation.note %} @@ -19,7 +19,7 @@ {{ recommendation.show.short_description }} {% endif %} <br/> - <a href="{% url "timeslot-detail" recommendation.id %}">[weiter]</a> + <a href="{% url "timeslot-detail-v2" recommendation.id %}">[weiter]</a> </div> </li> {% endfor %} |