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

10 lines
145 B
HTML

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