diff options
author | Christian Pointner <equinox@helsinki.at> | 2021-02-26 18:28:04 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2021-02-26 18:28:04 (GMT) |
commit | 850f92794a2571f44fd95f53a3f96f5ea659b3a4 (patch) | |
tree | a3bf8df502fbc4326e91ed7884ce8958175d7a7c /program/templates/v2/boxes/current.html | |
parent | 3f935fe643fd8d4f807803c99dbd25d048acb143 (diff) |
initial cleanup of V2 templates
Diffstat (limited to 'program/templates/v2/boxes/current.html')
-rw-r--r-- | program/templates/v2/boxes/current.html | 65 |
1 files changed, 0 insertions, 65 deletions
diff --git a/program/templates/v2/boxes/current.html b/program/templates/v2/boxes/current.html deleted file mode 100644 index 0ac5179..0000000 --- a/program/templates/v2/boxes/current.html +++ /dev/null @@ -1,65 +0,0 @@ -<!doctype html> -<html> -<head> - <meta charset="utf-8"/> - <title>Current program box</title> -</head> -<body> -{% if previous_timeslot or current_timeslot or next_timeslot or after_next_timeslot %} - <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_timeslot.start|date:"H:i" }}</td> - <td class="format bf-{{ previous_timeslot.show.broadcastformat.slug }}" - title="{{ previous_timeslot.show.broadcastformat.format }}"> </td> - <td class="show"> - <h3> - <a href="{% url "timeslot-detail" previous_timeslot.id %}">{{ previous_timeslot.show.name }}</a> - </h3> - </td> - <td class="show"></td> - </tr> - <tr class="current"> - <td class="start">{{ current_timeslot.start|date:"H:i" }}</td> - <td class="format bf-{{ current_timeslot.show.broadcastformat.slug }}" - title="{{ current_timeslot.show.broadcastformat.format }}">▶</td> - <td class="show"> - <h3> - <a href="{% url "timeslot-detail" current_timeslot.id %}">{{ current_timeslot.show.name }}</a> - </h3> - {% if current_timeslot.note %} - <p>{{ current_timeslot.note.title }}</p> - {% else %} - <p>{{ current_timeslot.show.short_description }}</p> - {% endif %} - </td> - </tr> - <tr class="next"> - <td class="start">{{ next_timeslot.start|date:"H:i" }}</td> - <td class="format bf-{{ next_timeslot.show.broadcastformat.slug }}" - title="{{ next_timeslot.show.broadcastformat.format }}"> </td> - <td class="show"> - <h3><a href="{% url "timeslot-detail" next_timeslot.id %}">{{ next_timeslot.show.name }}</a> - </h3> - </td> - <td class="show"></td> - </tr> - <tr class="after_next"> - <td class="start">{{ after_next_timeslot.start|date:"H:i" }}</td> - <td class="format bf-{{ after_next_timeslot.show.broadcastformat.slug }}" - title="{{ after_next_timeslot.show.broadcastformat.format }}"> </td> - <td class="show"> - <h3> - <a href="{% url "timeslot-detail" after_next_timeslot.id %}">{{ after_next_timeslot.show.name }}</a> - </h3> - </td> - <td class="show"></td> - </tr> - </table> - </dd> - </dl> -{% endif %} -</body> -</html> |