diff options
author | Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com> | 2014-02-28 18:49:32 (GMT) |
---|---|---|
committer | Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com> | 2014-02-28 18:49:32 (GMT) |
commit | d4c75b4893bfcb28e300ff5e10dc9cd0993f8537 (patch) | |
tree | 53cbd2c37bf6183b5cd61b0c8b515ae24088b8da /program/templates/boxes | |
parent | f44cf6587f67095f777c4847e5cc12c5fbef957e (diff) |
fixed urls and file locations
Diffstat (limited to 'program/templates/boxes')
-rw-r--r-- | program/templates/boxes/broadcastformat.html | 10 | ||||
-rw-r--r-- | program/templates/boxes/current.html | 60 | ||||
-rw-r--r-- | program/templates/boxes/musicfocus.html | 14 | ||||
-rw-r--r-- | program/templates/boxes/recommendations.html | 40 | ||||
-rw-r--r-- | program/templates/boxes/showinformation.html | 14 | ||||
-rw-r--r-- | program/templates/boxes/showtopic.html | 14 |
6 files changed, 152 insertions, 0 deletions
diff --git a/program/templates/boxes/broadcastformat.html b/program/templates/boxes/broadcastformat.html new file mode 100644 index 0000000..76ee382 --- /dev/null +++ b/program/templates/boxes/broadcastformat.html @@ -0,0 +1,10 @@ +{% if broadcastformats %} +<dl id="broadcastformat" class="portlet"> + <dt class="portletHeader"><span>Legende<span></dt> + {% for broadcastformat in broadcastformats %} + <dd class="portletItem bcformat bf-{{ broadcastformat.slug }}"> + <a title="Sendungen mit dem Sendungsformat {{broadcastformat.format}} anzeigen." href="?broadcastformat={{ broadcastformat.slug }}">{{ broadcastformat.format }}</a> + </dd> + {% endfor %} +</dl> +{% endif %} diff --git a/program/templates/boxes/current.html b/program/templates/boxes/current.html new file mode 100644 index 0000000..ba1df21 --- /dev/null +++ b/program/templates/boxes/current.html @@ -0,0 +1,60 @@ +<!doctype html> +<html> +<head> + <meta charset="utf-8"/> + <title>Current program box</title> +</head> +<body> + + {% if previous or current or next or after_next %} + <dl id="program-current-box" class="portlet program-box"> + <dt class="portletHeader">Programm derzeit</dt> + <dd class="portletItem"> + <table> + <tr class="previous"> + <td class="start">{{ previous.start|date:"H:i" }}</td> + <td class="format bf-{{ previous.show.broadcastformat.slug }}" + title="{{ previous.show.broadcastformat.format }}"> </td> + <td class="show"> + <h3><a href="{% url timeslot-detail previous.id %}">{{ previous.show.name }}</a></h3> + </td> + <td class="show"></td> + </tr> + <tr class="current"> + <td class="start">{{ current.start|date:"H:i" }}</td> + <td class="format bf-{{ current.show.broadcastformat.slug }}" + title="{{ current.show.broadcastformat.format }}">▶</td> + <td class="show"> + <h3><a href="{% url timeslot-detail current.id %}">{{ current.show.name }}</a></h3> + {% if current.note %} + <p>{{ current.note.title }}</p> + {% else %} + <p>{{ current.show.short_description }}</p> + {% endif %} + </td> + </tr> + <tr class="next"> + <td class="start">{{ next.start|date:"H:i" }}</td> + <td class="format bf-{{ next.show.broadcastformat.slug }}" + title="{{ next.show.broadcastformat.format }}"> </td> + <td class="show"> + <h3><a href="{% url timeslot-detail next.id %}">{{ next.show.name }}</a></h3> + </td> + <td class="show"></td> + </tr> + <tr class="after_next"> + <td class="start">{{ after_next.start|date:"H:i" }}</td> + <td class="format bf-{{ after_next.show.broadcastformat.slug }}" + title="{{ after_next.show.broadcastformat.format }}"> </td> + <td class="show"> + <h3><a href="{% url timeslot-detail after_next.id %}">{{ after_next.show.name }}</a></h3> + </td> + <td class="show"></td> + </tr> + </table> + </dd> + </dl> + {% endif %} + +</body> +</html> diff --git a/program/templates/boxes/musicfocus.html b/program/templates/boxes/musicfocus.html new file mode 100644 index 0000000..01fffae --- /dev/null +++ b/program/templates/boxes/musicfocus.html @@ -0,0 +1,14 @@ +{% if musicfoci %} +<dl id="filterbox_musicfocus" class="portlet filterbox"> + <dt class="portletHeader"><span>Musiktendenz<span></dt> + <dd class="portletItem"> + <ul> + {% for item in musicfoci %} + <li> + <a title="Sendungen mit der Musiktendenz {{item.focus}} anzeigen." class="abbrev mf-{{ item.abbrev }}" href="?musicfocus={{ item.slug }}">{{ item }}</a> + </li> + {% endfor %} + </ul> + </dd> +</dl> +{% endif %} diff --git a/program/templates/boxes/recommendations.html b/program/templates/boxes/recommendations.html new file mode 100644 index 0000000..2174654 --- /dev/null +++ b/program/templates/boxes/recommendations.html @@ -0,0 +1,40 @@ +<!doctype html> +<html> +<head> + <meta charset="utf-8"/> + <title>Recomendations box</title> +</head> +<body> + {% if recommendation_list %} + <dl id="recommendations" class="portlet program-box"> + <dt class="portletHeader">Programmhinweise</dt> + <dd class="portletItem"> + <table> + {% for item in recommendation_list %} + <tr> + <td class="start"> </td> + <td class="format bf-{{ item.show.broadcastformat.slug }}" + title="{{ item.show.broadcastformat.format }}"> </td> + <td class="show"> + {{ item.start|date:"d.m. H:i" }} - + {{ item.end|date:"H:i" }}<br /> + <h3> + <a href="{% url timeslot-detail item.id %}">{{ item.show.name }}</a> + </h3> + <p class="note-title"> + {% if item.note %} + {{ item.note.title }}<br /> + {% else %} + {{ item.show.broadcastformat.format }}<br /> + {% endif %} + <a href="{% url timeslot-detail item.id %}">[weiter]</a> + </p> + </td> + </tr> + {% endfor %} + </table> + </dd> + </dl> + {% endif %} +</body> +</html> diff --git a/program/templates/boxes/showinformation.html b/program/templates/boxes/showinformation.html new file mode 100644 index 0000000..ac4dc2c --- /dev/null +++ b/program/templates/boxes/showinformation.html @@ -0,0 +1,14 @@ +{% if showinformations %} +<dl id="filterbox_showinformation" class="portlet filterbox"> + <dt class="portletHeader"><span>Sendungsinfo<span></dt> + <dd class="portletItem"> + <ul> + {% for item in showinformations %} + <li> + <a title="Sendungen mit der Information {{item.information}} anzeigen." class="abbrev si-{{ item.abbrev }}" href="?showinformation={{ item.slug }}">{{ item }}</a> + </li> + {% endfor %} + </ul> + </dd> +</dl> +{% endif %} diff --git a/program/templates/boxes/showtopic.html b/program/templates/boxes/showtopic.html new file mode 100644 index 0000000..3a1938d --- /dev/null +++ b/program/templates/boxes/showtopic.html @@ -0,0 +1,14 @@ +{% if showtopics %} +<dl id="filterbox_showtopic" class="portlet filterbox"> + <dt class="portletHeader"><span>Thema / Schwerpunkt<span></dt> + <dd class="portletItem"> + <ul> + {% for item in showtopics %} + <li> + <a title="Sendungen mit dem Schwerpunkt {{item.topic}} anzeigen." class="abbrev st-{{ item.abbrev }}" href="?showtopic={{ item.slug }}">{{ item }}</a> + </li> + {% endfor %} + </ul> + </dd> +</dl> +{% endif %} |