summaryrefslogtreecommitdiff
path: root/program/templates
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2021-03-03 12:43:54 (GMT)
committerChristian Pointner <equinox@helsinki.at>2021-03-03 12:44:02 (GMT)
commit5d63bb9963ae6e41fc6c2cca97834b40beb71a0b (patch)
treef77d396c2f2c914ffb4ede841cbd36fad9be78c6 /program/templates
parentb23c473e3af9e7c4e5c7aee6bfc93cde40737d94 (diff)
remove views not used by new homepage
Diffstat (limited to 'program/templates')
-rw-r--r--program/templates/v2/current_show.html56
-rw-r--r--program/templates/v2/recommendation.html28
2 files changed, 0 insertions, 84 deletions
diff --git a/program/templates/v2/current_show.html b/program/templates/v2/current_show.html
deleted file mode 100644
index ab5f843..0000000
--- a/program/templates/v2/current_show.html
+++ /dev/null
@@ -1,56 +0,0 @@
-<!doctype html>
-<html>
-<head>
- <meta charset="utf-8"/>
- <title>Current program box</title>
-</head>
-<body>
- <ul>
-{% if previous_timeslot %}
- <li id="previous" class="bf-{{ previous_timeslot.show.broadcastformat.slug }}">
- <div class="time">{{ previous_timeslot.start|date:"H:i" }}</div>
- <div class="show-name">
- <a href="{% url "timeslot-detail-v2" previous_timeslot.id %}">{{ previous_timeslot.show.name }}</a>
- </div>
- <div class="show-content">
- </div>
- </li>
-{% endif %}
-{% if current_timeslot %}
- <li id="current" class="bf-{{ current_timeslot.show.broadcastformat.slug }}">
- <div class="time">{{ current_timeslot.start|date:"H:i" }}</div>
- <div class="show-name">
- <a href="{% url "timeslot-detail-v2" current_timeslot.id %}">{{ current_timeslot.show.name }}</a>
- </div>
- <div class="show-content">
-{% if current_timeslot.note %}
- {{ current_timeslot.note.title }}
-{% else %}
- {{ current_timeslot.show.short_description }}
-{% endif %}
- </div>
- </li>
-{% endif %}
-{% if next_timeslot %}
- <li id="next" class="bf-{{ next_timeslot.show.broadcastformat.slug }}">
- <div class="time">{{ next_timeslot.start|date:"H:i" }}</div>
- <div class="show-name">
- <a href="{% url "timeslot-detail-v2" next_timeslot.id %}">{{ next_timeslot.show.name }}</a>
- </div>
- <div class="show-content">
- </div>
- </li>
-{% endif %}
-{% if after_next_timeslot %}
- <li id="after_next" class="bf-{{ after_next_timeslot.show.broadcastformat.slug }}">
- <div class="timer">{{ after_next_timeslot.start|date:"H:i" }}</div>
- <div class="show-name">
- <a href="{% url "timeslot-detail-v2" after_next_timeslot.id %}">{{ after_next_timeslot.show.name }}</a>
- </div>
- <div class="show-content">
- </div>
- </li>
-{% endif %}
- </ul>
-</body>
-</html>
diff --git a/program/templates/v2/recommendation.html b/program/templates/v2/recommendation.html
deleted file mode 100644
index 3dfeed2..0000000
--- a/program/templates/v2/recommendation.html
+++ /dev/null
@@ -1,28 +0,0 @@
-<!doctype html>
-<html>
-<head>
- <meta charset="utf-8"/>
- <title>Recomendations box</title>
-</head>
-<body>
- <ul>
-{% for recommendation in recommendation_list %}
- <li class="bf-{{ recommendation.show.broadcastformat.slug }}">
- <div class="time">{{ recommendation.start|date:"d.m. H:i" }} - {{ recommendation.end|date:"H:i" }}</td>
- <div class="show-name">
- <a href="{% url "timeslot-detail-v2" recommendation.id %}">{{ recommendation.show.name }}</a>
- </div>
- <div class="show-content">
-{% if recommendation.note %}
- {{ recommendation.note.title }}
-{% else %}
- {{ recommendation.show.short_description }}
-{% endif %}
- <br/>
- <a href="{% url "timeslot-detail-v2" recommendation.id %}">[weiter]</a>
- </div>
- </li>
-{% endfor %}
- </ul>
-</body>
-</html>