hbbs.decentral1.se/hbbs/templates/collection.html
2020-04-04 20:45:54 +02:00

10 lines
139 B
HTML

{% extends "layout.html" %}
{% block content %}
<ul>
{% for film in collection %}
<li>{{ film }}</li>
{% endfor %}
</ul>
{% endblock %}