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/show_detail.html | |
parent | 255b58b8b47f4fc12c634d5b3098538b2ab250b3 (diff) | |
parent | 546a1a082e6cbafaf0fd5a7063c3694e0e0205f3 (diff) |
Merge branch 'new-homepage' into stable
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 88e439f..5e687f1 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-v2" host.id %}">{{ host }}</a><br/> + <a href="/program/hosts/{{ 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-v2" note.timeslot.id %}" + <a href="/program/{{ 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-v2" show.predecessor.slug %}">{{ show.predecessor.name }}</a></h3> + <h3>Davor als <a href="/program/shows/{{ show.predecessor.slug }}">{{ show.predecessor.name }}</a></h3> {% endif %} {% for note in show.predecessor.notes.all reversed %} <li> - <a href="{% url "timeslot-detail-v2" note.timeslot.id %}" + <a href="/program/{{ note.timeslot.id }}" title="{{ note.title }}">{{ note.start|date:"d. M Y" }}:</a> <div class="title">{{ note.title }}</div> </li> |