summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Raggam <raggam-nl@adm.at>2011-04-12 21:42:03 (GMT)
committerJohannes Raggam <raggam-nl@adm.at>2011-04-12 21:42:03 (GMT)
commit3b35294c5bc03129366ec30153a96ac6d8ba41e0 (patch)
treeb7af67f1fa0eed37fd94d38da6280e7076b9a281
parent353a33e08a718c7b1150aa60a352960948244acb (diff)
day schedule
-rw-r--r--helsinki/program/templates/program/day_schedule.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/helsinki/program/templates/program/day_schedule.html b/helsinki/program/templates/program/day_schedule.html
index a0e1ac4..72c9560 100644
--- a/helsinki/program/templates/program/day_schedule.html
+++ b/helsinki/program/templates/program/day_schedule.html
@@ -27,8 +27,8 @@
<div id="timeslots">
{% for timeslot in timeslots %}
- <div class="timeslot bcformat-{{ timeslot.show.broadcastformat.slug }}">
- <div class="start">{{ timeslot.start|date:"H:i" }}</div>
+ <div class="timeslot bf-{{ timeslot.show.broadcastformat.slug }}">
+ <div class="show-start">{{ timeslot.start|date:"H:i" }}</div>
<div class="show-abbrevs">
{% for showinformation in timeslot.show.showinformation.all %}
<span class="si-{{ showinformation.abbrev }}">{{ showinformation.abbrev }}</span>
@@ -41,12 +41,12 @@
{% endfor %}
</div>
<div class="show">
- <h3 class="name"><a href="{% url timeslot-detail timeslot.id %}">{{ timeslot.show.name }}</a></h3>
+ <h3 class="show-title"><a href="{% url timeslot-detail timeslot.id %}">{{ timeslot.show.name }}</a></h3>
{% if timeslot.note %}
<p class="note-title"><strong>Heute:</strong> {{ timeslot.note.title }}</p>
{% else %}
{% if timeslot.show.short_description != 'FIXME' %}
- <p class="short-description">{{ timeslot.show.short_description }}</p>
+ <p class="show-description">{{ timeslot.show.short_description }}</p>
{% endif %}
{% endif %}
</div>