From dfd55f706de1f588eb0573b51c3e4ddba8612e97 Mon Sep 17 00:00:00 2001
From: Christian Pointner <equinox@helsinki.at>
Date: Wed, 10 Mar 2021 17:25:59 +0100
Subject: minor template changes and cleanups


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 }}">
-- 
cgit v0.10.2