movies-app / templates /genres.html
tmzh
initial commit
6660737
raw
history blame contribute delete
No virus
222 Bytes
<!-- genres.html -->
{% extends 'base.html' %}
{% block content %}
<h1>Genres</h1>
<ul>
{% for genre in genres %}
<li><a href="/genre/{{ genre.id }}">{{ genre.name }}</a></li>
{% endfor %}
</ul>
{% endblock %}