summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Raggam <raggam-nl@adm.at>2014-02-07 13:53:10 (GMT)
committerJohannes Raggam <raggam-nl@adm.at>2014-02-07 13:53:10 (GMT)
commit902cc6cfbef3f50268f73dc8690295bf2d556e30 (patch)
tree954a8dce9f78b7078b8eb5e29271a164814158b4
parentd054b80bffb26106e81d606a6ffaab56dea81a47 (diff)
towards nicer styling. styles are in github.com/thet/helsinki-theme at the moment
-rw-r--r--helsinki/templates/program/show_detail.html5
1 files changed, 4 insertions, 1 deletions
diff --git a/helsinki/templates/program/show_detail.html b/helsinki/templates/program/show_detail.html
index c75b322..0f4b302 100644
--- a/helsinki/templates/program/show_detail.html
+++ b/helsinki/templates/program/show_detail.html
@@ -67,7 +67,10 @@
<h2>Sendungstipps</h2>
<ul class="recommendations-list">
{% for note in show.notes.all reversed %}
- <li><a href="{% url timeslot-detail note.timeslot.id %}" title="{{ note.title }}">{{ note.start|date:"d. M Y" }}:</a> {{ note.title }}</li>
+ <li>
+ <a href="{% url timeslot-detail note.timeslot.id %}" title="{{ note.title }}">{{ note.start|date:"d. M Y" }}:</a>
+ <div class="title">{{ note.title }}</div>
+ </li>
{% endfor %}
</ul>
{% endif %}