{% extends "base.html" %} {% block title %}Song List{% endblock %} {% block content %}

Song List {% if filtered %}({{object_list.count}} out of {{ total }} total.){% else %}({{ total }}){% endif %}

Search

{% for song in object_list %} {% endfor %}
TitleArtistGenreYear
{{ song.title|escape }} {{ song.artist|escape }} {{ song.genre|escape }} {{ song.year|escape }}
{% endblock content %}