summaryrefslogtreecommitdiff
path: root/helsinki
diff options
context:
space:
mode:
authorJohannes Raggam <raggam-nl@adm.at>2011-03-31 17:45:53 (GMT)
committerJohannes Raggam <raggam-nl@adm.at>2011-03-31 17:45:53 (GMT)
commit9066d03269bfb3cfe1410a9d1083d0bd352e6ca8 (patch)
tree7026fbf86487579181298108f1ebaff40314b8f2 /helsinki
parent1a0cc53990ed436029c0e607d57b251c6f5a8351 (diff)
apply plone plortlet style
Diffstat (limited to 'helsinki')
-rw-r--r--helsinki/program/templates/program/recommendations_box.html26
1 files changed, 13 insertions, 13 deletions
diff --git a/helsinki/program/templates/program/recommendations_box.html b/helsinki/program/templates/program/recommendations_box.html
index 94a55dd..17a0af8 100644
--- a/helsinki/program/templates/program/recommendations_box.html
+++ b/helsinki/program/templates/program/recommendations_box.html
@@ -1,20 +1,20 @@
+<!doctype html>
<html>
<head>
- <title>Recomendations box</title>
- <link href="/site_media/styles/base.css" media="screen" rel="stylesheet" type="text/css" />
+ <meta charset="utf-8"/>
+ <title>Recomendations box</title>
+ <link href="/site_media/styles/base.css" media="screen" rel="stylesheet" type="text/css" />
</head>
<body>
-
-<div id="recommendations">
- <div id="recommendations-title">Programmhinweise</div>
+ <dl id="recommendations" class="portlet">
+ <dt id="recommendations-title" class="portletHeader">Programmhinweise</dt>
{% for recommendation in recommendations %}
- <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>
- <div class="show-name"><a href="{% url show-detail recommendation.show.slug %}">{{ recommendation.show.name }}</a></div>
- <div class="note-title"><a href="{% url timeslot-detail recommendation.timeslot.id %}">{{ recommendation.title }}</a></div>
- </div>
+ <dd class="portletItem recommendation {{ recommendation.show.broadcastformat.slug }}">
+ <h3 class="show-name"><a href="{% url show-detail recommendation.show.slug %}">{{ recommendation.show.name }}</a></h3>
+ <p class="timeslot-start-end">{{ recommendation.timeslot.start|date:"d.m. H:i" }}-{{ recommendation.timeslot.end|date:"H:i" }}</p>
+ <p class="note-title"><a href="{% url timeslot-detail recommendation.timeslot.id %}">{{ recommendation.title }}</a></p>
+ </dd>
{% endfor %}
-</div>
-
+ </dl>
</body>
-</html> \ No newline at end of file
+</html>