hbbs.decentral1.se/hbbs/templates/collection.html
2020-04-05 12:04:21 +02:00

10 lines
188 B
HTML

{% extends "layout.html" %}
{% block content %}
<ul id="collection-list" class="no-style-list">
{% for film in collection %}
<li>{{ film.Title }}</li>
{% endfor %}
</ul>
{% endblock %}