From 546a1a082e6cbafaf0fd5a7063c3694e0e0205f3 Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Wed, 3 Mar 2021 14:21:13 +0100 Subject: fix link targets for new homepage diff --git a/program/templates/v2/day_schedule.html b/program/templates/v2/day_schedule.html index a4e1bde..e91c020 100644 --- a/program/templates/v2/day_schedule.html +++ b/program/templates/v2/day_schedule.html @@ -58,7 +58,7 @@

{{ timeslot.show.name }}

+ href="/program/{{ timeslot.id }}">{{ timeslot.show.name }} {% if timeslot.note %}

Heute: {{ timeslot.note.title }}

{% else %} diff --git a/program/templates/v2/host_detail.html b/program/templates/v2/host_detail.html index 1f2782c..a224635 100644 --- a/program/templates/v2/host_detail.html +++ b/program/templates/v2/host_detail.html @@ -10,7 +10,7 @@
Sendungen
{% for show in host.active_shows %} - + {% endfor %}
diff --git a/program/templates/v2/host_list.html b/program/templates/v2/host_list.html index 8353b71..27b2895 100644 --- a/program/templates/v2/host_list.html +++ b/program/templates/v2/host_list.html @@ -9,7 +9,7 @@
{% for host in host_list %} {% endfor %}
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 @@

- {{ recommendation.show.name }}
+ {{ recommendation.show.name }}
vom {{ recommendation.start|date:"d.m. H:i" }}-{{ recommendation.end|date:"H:i" }}

{% if recommendation.note %}

- {{ recommendation.note.title }} + {{ recommendation.note.title }}

{{ recommendation.note.content|safe }}
{% else %}

{{ recommendation.show.broadcastformat.format }} + href="/program/{{ recommendation.id }}">{{ recommendation.show.broadcastformat.format }}

{% endif %}
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 @@

{% for host in show.hosts.all %} - {{ host }}
+ {{ host }}
{% endfor %} {% if show.email %} Email: {{ show.email }}
@@ -63,18 +63,18 @@