Files
vrobbler/vrobbler/templates/videos/movie_list.html

13 lines
190 B
HTML

{% extends "base.html" %}
{% block content %}
<h2>Movies</h2>
<ul>
{% for movie in object_list %}
<li>{{movie}}</li>
{% endfor %}
</ul>
{% endblock %}