aboutsummaryrefslogtreecommitdiffstats
path: root/templates/screening/list.tera
blob: 7c923036fc6e3bc6305ebde2e7db32265796ce01 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<title>Screenings</title>
</head>
<body>
<h1>Screenings</h1>

<p>
<a href="/screenings/new">Add screening</a></p>

{% if screenings | length <= 0%}
No screenings defined.
{% else %}
<ul>
{% for s in screenings -%}
<li>{{ s.date }} {{ s.start_time }} - {{ s.end_time }}: {{ s.film.title }} ({{ s.room.name }})</li>
{% endfor -%}
</ul>
{% endif %}
</body>
</html>