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/show_detail.html | |
parent | 850f92794a2571f44fd95f53a3f96f5ea659b3a4 (diff) |
fix vew names and url tag parameters for v2 templates
Diffstat (limited to 'program/templates/v2/show_detail.html')
-rw-r--r-- | program/templates/v2/show_detail.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/program/templates/v2/show_detail.html b/program/templates/v2/show_detail.html index 2e45549..88e439f 100644 --- a/program/templates/v2/show_detail.html +++ b/program/templates/v2/show_detail.html @@ -47,7 +47,7 @@ <p> {% for host in show.hosts.all %} - <a href="{% url "host-detail" host.id %}">{{ host }}</a><br/> + <a href="{% url "host-detail-v2" host.id %}">{{ host }}</a><br/> {% endfor %} {% if show.email %} <strong>Email:</strong> <a href="mailto:{{ show.email }}">{{ show.email }}</a><br/> @@ -63,18 +63,18 @@ <ul class="recommendations-list"> {% for note in show.notes.all reversed %} <li> - <a href="{% url "timeslot-detail" note.timeslot.id %}" + <a href="{% url "timeslot-detail-v2" note.timeslot.id %}" title="{{ note.title }}">{{ note.start|date:"d. M Y" }}:</a> <div class="title">{{ note.title }}</div> </li> {% endfor %} {% if show.predecessor and show.predecessor.notes.all %} {% if show.name != show.predecessor.name %} - <h3>Davor als <a href="{% url "show-detail" show.predecessor.slug %}">{{ show.predecessor.name }}</a></h3> + <h3>Davor als <a href="{% url "show-detail-v2" show.predecessor.slug %}">{{ show.predecessor.name }}</a></h3> {% endif %} {% for note in show.predecessor.notes.all reversed %} <li> - <a href="{% url "timeslot-detail" note.timeslot.id %}" + <a href="{% url "timeslot-detail-v2" note.timeslot.id %}" title="{{ note.title }}">{{ note.start|date:"d. M Y" }}:</a> <div class="title">{{ note.title }}</div> </li> |