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

10 lines
145 B
HTML
Raw Normal View History

2020-04-04 20:11:06 +02:00
{% extends "layout.html" %}
{% block content %}
2020-04-04 20:45:54 +02:00
<ul>
{% 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 %}