Altessimo/artists/templates/artists/index.html

12 lines
294 B
HTML
Raw Normal View History

2020-12-16 17:36:29 +00:00
{% extends 'layouts/base.html' %}
{% block title %} Artists {% endblock %}
{% block content %}
<h1>Artists</h1>
<ul>
{% for artist in artists %}
<li><a href="/artists/{{ artist.slug }}">{{ artist.romanized_name }}</a></li>
{% endfor %}
</ul>
{% endblock %}