14 lines
385 B
HTML
14 lines
385 B
HTML
{% extends "layout.html" %}
|
|
{% block content %}
|
|
<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>
|
|
<ul id="collection-list" class="no-style-list">
|
|
{% for film in collection %}
|
|
<li>{{ film.Title }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock %}
|