diff options
author | Christian Pointner <equinox@helsinki.at> | 2021-03-03 13:21:31 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2021-03-03 13:21:31 (GMT) |
commit | 2094bd035f5b9ede35f9b28d5a2be7555f59b3af (patch) | |
tree | aee75b724b5e44066c07d8a74fecd542e8a04390 /program/templates/v2/recommendation_list.html | |
parent | 255b58b8b47f4fc12c634d5b3098538b2ab250b3 (diff) | |
parent | 546a1a082e6cbafaf0fd5a7063c3694e0e0205f3 (diff) |
Merge branch 'new-homepage' into stable
Diffstat (limited to 'program/templates/v2/recommendation_list.html')
-rw-r--r-- | program/templates/v2/recommendation_list.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/program/templates/v2/recommendation_list.html b/program/templates/v2/recommendation_list.html index 3b6f66d..5b47a6e 100644 --- a/program/templates/v2/recommendation_list.html +++ b/program/templates/v2/recommendation_list.html @@ -25,16 +25,16 @@ </div> <div class="show-detail"> <h4> - <a href="{% url "show-detail-v2" recommendation.show.slug %}">{{ recommendation.show.name }}</a><br/> + <a href="/program/shows/{{ recommendation.show.slug }}">{{ recommendation.show.name }}</a><br/> vom {{ recommendation.start|date:"d.m. H:i" }}-{{ recommendation.end|date:"H:i" }}</h4> {% if recommendation.note %} <h3 class="show-title"> - <a href="{% url "timeslot-detail-v2" recommendation.id %}">{{ recommendation.note.title }}</a> + <a href="/program/{{ recommendation.id }}">{{ recommendation.note.title }}</a> </h3> <div class="note-content">{{ recommendation.note.content|safe }}</div> {% else %} <h3 class="show-title"><a - href="{% url "timeslot-detail-v2" recommendation.id %}">{{ recommendation.show.broadcastformat.format }}</a> + href="/program/{{ recommendation.id }}">{{ recommendation.show.broadcastformat.format }}</a> </h3> {% endif %} </div> |