diff options
author | Christian Pointner <equinox@helsinki.at> | 2021-03-03 13:03:05 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2021-03-03 13:03:05 (GMT) |
commit | 255b58b8b47f4fc12c634d5b3098538b2ab250b3 (patch) | |
tree | 668736b948cf3b59852a99a2688eca8318023d3e /program/templates/v2/recommendation.html | |
parent | 82cd389025255354027134a7ba0dd2f41faa8fdc (diff) | |
parent | a0ee1c483fe320e9b6b719a2ce103954f5b00e92 (diff) |
Merge branch 'new-homepage' into stable
Diffstat (limited to 'program/templates/v2/recommendation.html')
-rw-r--r-- | program/templates/v2/recommendation.html | 28 |
1 files changed, 0 insertions, 28 deletions
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> |