blob: 36b7c025bf488396e171c0aa8b62ed65c74be462 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<!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" 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" recommendation.id %}">[weiter]</a>
</div>
</li>
{% endfor %}
</ul>
</body>
</html>
|