diff options
author | Christian Pointner <equinox@helsinki.at> | 2021-03-10 16:25:59 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2021-03-10 16:25:59 (GMT) |
commit | dfd55f706de1f588eb0573b51c3e4ddba8612e97 (patch) | |
tree | 63020f19d5380ccd19411ce735a5141122a09470 | |
parent | 79ac160f239937bb4beb982e2cab2020d4eac9d1 (diff) |
minor template changes and cleanups
-rw-r--r-- | program/templates/v2/day_schedule.html | 2 | ||||
-rw-r--r-- | program/templates/v2/host_list.html | 1 | ||||
-rw-r--r-- | program/templates/v2/recommendation_list.html | 1 | ||||
-rw-r--r-- | program/templates/v2/show_detail.html | 1 | ||||
-rw-r--r-- | program/templates/v2/timeslot_detail.html | 1 |
5 files changed, 3 insertions, 3 deletions
diff --git a/program/templates/v2/day_schedule.html b/program/templates/v2/day_schedule.html index e97d5ad..ec1a375 100644 --- a/program/templates/v2/day_schedule.html +++ b/program/templates/v2/day_schedule.html @@ -5,7 +5,7 @@ <body> <div id="content-main" class="day-schedule"> - <h1 id="date">{{ day|date:"l, d.m.Y" }}</h1> + <h1>{{ day|date:"l, d.m.Y" }}</h1> <div id="timeslots"> {% for timeslot in timeslots %} diff --git a/program/templates/v2/host_list.html b/program/templates/v2/host_list.html index b2c1542..b8a4677 100644 --- a/program/templates/v2/host_list.html +++ b/program/templates/v2/host_list.html @@ -6,6 +6,7 @@ <div id="content-main" class="host-list"> <h1>Sendungsmachende A-Z</h1> + <div id="hosts"> {% for host in host_list %} <div class="host"><a href="/program/hosts/{{ host.id }}">{{ host.name }}</a></div> diff --git a/program/templates/v2/recommendation_list.html b/program/templates/v2/recommendation_list.html index a2b6b54..63bc556 100644 --- a/program/templates/v2/recommendation_list.html +++ b/program/templates/v2/recommendation_list.html @@ -6,6 +6,7 @@ <div id="content-main" class="recommendation-list"> <h1>Programmhinweise</h1> + <div id="shows"> {% for recommendation in recommendation_list %} <div class="show recommendation bf-{{ recommendation.show.broadcastformat.slug }}"> diff --git a/program/templates/v2/show_detail.html b/program/templates/v2/show_detail.html index ded171e..e8c4c8f 100644 --- a/program/templates/v2/show_detail.html +++ b/program/templates/v2/show_detail.html @@ -5,7 +5,6 @@ <body> <div id="content-main" class="show-detail"> - <h1>{{ show.name }}</h1> <div class="show-detail-header bf-{{ show.broadcastformat.slug }}"> diff --git a/program/templates/v2/timeslot_detail.html b/program/templates/v2/timeslot_detail.html index d4ac952..9af51ab 100644 --- a/program/templates/v2/timeslot_detail.html +++ b/program/templates/v2/timeslot_detail.html @@ -5,7 +5,6 @@ <body> <div id="content-main" class="timeslot-detail"> - <h1><a href="/program/shows/{{ timeslot.show.slug }}">{{ timeslot.show.name }}</a></h1> <div class="show-detail-header bf-{{ timeslot.show.broadcastformat.slug }}"> |