summaryrefslogtreecommitdiff
path: root/helsinki/program/templates/program/current_box.html
diff options
context:
space:
mode:
Diffstat (limited to 'helsinki/program/templates/program/current_box.html')
-rw-r--r--helsinki/program/templates/program/current_box.html42
1 files changed, 0 insertions, 42 deletions
diff --git a/helsinki/program/templates/program/current_box.html b/helsinki/program/templates/program/current_box.html
deleted file mode 100644
index a2341d3..0000000
--- a/helsinki/program/templates/program/current_box.html
+++ /dev/null
@@ -1,42 +0,0 @@
-<!doctype html>
-<html>
-<head>
- <meta charset="utf-8"/>
- <title>Current program box</title>
- <link href="/site_media/styles/base.css" media="screen" rel="stylesheet" type="text/css" />
-</head>
-<body>
-
- {% if current or next or after_next %}
- <dl class="portlet program-current">
- <dt class="portletHeader">Programm derzeit</dt>
- <dd class="portletItem current-timeslot">
- <div class="start">{{ current.start|date:"H:i" }}</div>
- <div class="show {{ current.show.broadcastformat.slug }}">
- <div class="name"><a href="{% url timeslot-detail current.id %}">{{ current.show.name }}</a></div>
- {% if current.note %}
- <div class="note-title">{{ current.note.title }}</div>
- {% else %}
- {% if current.show.short_description != 'FIXME' %}
- <div class="short-description">{{ current.show.short_description }}</div>
- {% endif %}
- {% endif %}
- </div>
- </dd>
- <dd class="portletItem next-timeslot">
- <div class="start">{{ next.start|date:"H:i" }}</div>
- <div class="show {{ next.show.broadcastformat.slug }}">
- <div class="name"><a href="{% url timeslot-detail next.id %}">{{ next.show.name }}</a></div>
- </div>
- </dd>
- <dd class="portletItem next-timeslot">
- <div class="start">{{ after_next.start|date:"H:i" }}</div>
- <div class="show {{ after_next.show.broadcastformat.slug }}">
- <div class="name"><a href="{% url timeslot-detail after_next.id %}">{{ after_next.show.name }}</div></a>
- </div>
- </dd>
- </dl>
- {% endif %}
-
-</body>
-</html>