hbbs.decentral1.se/hbbs/templates/collection.html

14 lines
385 B
HTML
Raw Normal View History

2020-04-04 20:11:06 +02:00
{% extends "layout.html" %}
{% block content %}
2020-04-05 12:36:37 +02:00
<p id="collection-explanation">
196 things to watch, mostly films, some TV series. The collection is
fixed at this point, because we really should watch what we have (and
there's a lot).
</p>
2020-04-05 12:04:21 +02:00
<ul id="collection-list" class="no-style-list">
2020-04-04 20:45:54 +02:00
{% for film in collection %}
2020-04-04 21:34:32 +02:00
<li>{{ film.Title }}</li>
2020-04-04 20:45:54 +02:00
{% endfor %}
</ul>
2020-04-04 20:11:06 +02:00
{% endblock %}