summaryrefslogtreecommitdiff
path: root/helsinki/program/templates/program/broadcastformats_box.html
diff options
context:
space:
mode:
Diffstat (limited to 'helsinki/program/templates/program/broadcastformats_box.html')
-rw-r--r--helsinki/program/templates/program/broadcastformats_box.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/helsinki/program/templates/program/broadcastformats_box.html b/helsinki/program/templates/program/broadcastformats_box.html
new file mode 100644
index 0000000..13fb0a9
--- /dev/null
+++ b/helsinki/program/templates/program/broadcastformats_box.html
@@ -0,0 +1,20 @@
+<!doctype html>
+<html>
+<head>
+ <meta charset="utf-8"/>
+ <title>Broadcast Formats</title>
+ <link href="/site_media/styles/base.css" media="screen" rel="stylesheet" type="text/css" />
+</head>
+<body>
+ {% if broadcastformat_list %}
+ <dl id="bcformats" class="portlet program-bcformats">
+ <dt class="portletHeader"><span>Legende</span></dt>
+ {% for broadcastformat in broadcastformat_list %}
+ <dd class="portletItem bcformat bcformat-{{ broadcastformat.slug }}">
+ <a href="?broadcastformat={{ broadcastformat.slug }}">{{ broadcastformat.format }}</a>
+ </dd>
+ {% endfor %}
+ </dl>
+ {% endif %}
+</body>
+</html>