From c6afbb907d60dc06426e36b7772c1f9b9e2f8841 Mon Sep 17 00:00:00 2001 From: Johannes Raggam <raggam-nl@adm.at> Date: Thu, 7 Jul 2011 16:33:50 +0200 Subject: upd diff --git a/templates/program/recommendations.html b/templates/program/recommendations.html index 0a445f5..c1ffb5c 100644 --- a/templates/program/recommendations.html +++ b/templates/program/recommendations.html @@ -5,7 +5,7 @@ <body> <div id="content-main" class="recommendations"> - <div id="recommendations-title">Programmhinweise</div> + <h1>Programmhinweise</h1> {% for recommendation in recommendation_list %} <div class="recommendation {{ recommendation.show.broadcastformat.slug }}"> <div class="timeslot-start-end">{{ recommendation.timeslot.start|date:"d.m. H:i" }}-{{ recommendation.timeslot.end|date:"H:i" }}</div> diff --git a/templates/program/show_list.html b/templates/program/show_list.html index 4303929..bb5b070 100644 --- a/templates/program/show_list.html +++ b/templates/program/show_list.html @@ -36,11 +36,11 @@ </div> <div class="show-detail"> <h3 class="show-title"><a href="{% url show-detail show.slug %}">{{ show.name }}</a></h3> - <div class="show-programslots"> + <ul class="show-programslots"> {% for slot in show.programslots.all %} - <p class="show-programslot">{{ slot }}</p> + <li class="show-programslot">{{ slot }}</li> {% endfor %} - </div> + </ul> {% if show.short_description != 'FIXME' %} <p class="show-description">{{ show.short_description }}</p> {% endif %} -- cgit v0.10.2