From 2ef4d1c4f2c081d43bfe2f239ebee5e8e6a516ec Mon Sep 17 00:00:00 2001 From: Johannes Raggam Date: Thu, 7 Jul 2011 16:56:44 +0200 Subject: upd diff --git a/templates/program/recommendations.html b/templates/program/recommendations.html index c1ffb5c..cbcb463 100644 --- a/templates/program/recommendations.html +++ b/templates/program/recommendations.html @@ -5,16 +5,34 @@
-

Programmhinweise

-{% for recommendation in recommendation_list %} -
-
{{ recommendation.timeslot.start|date:"d.m. H:i" }}-{{ recommendation.timeslot.end|date:"H:i" }}
- - {% if recommendation.show.short_description != 'FIXME' %} -
{{ recommendation.show.short_description }}
- {% endif %} - -
{{ recommendation.content|safe}}
+

Programmhinweise

+
+{% for item in recommendation_list %} +
+
+ {% for item in show.showinformation.all %} + {{ item.abbrev }} + {% endfor %} + {% for item in show.showtopic.all %} + {{ item.abbrev }} + {% endfor %} + {% for item in show.musicfocus.all %} + {{ item.abbrev }} + {% endfor %} +
+
+

{{ item.show.name }}

+

{{ item.timeslot.start|date:"d.m. H:i" }}-{{ item.timeslot.end|date:"H:i" }}

+ + {% if item.show.short_description != 'FIXME' %} +

{{ item.show.short_description }}

+ {% endif %} + +

{{ item.title }}

+ +

{{ item.content|safe}}

+ +
{% endfor %}
-- cgit v0.10.2