{% extends "reinhardt/_base.html" %} {% load reinhardt_extras %} {% load i18n %} {% load cache %} {% block head_title %}{{ genre }}{% endblock %} {% block main %}

{% translate "genre" %}: {{ genre }} - {{ music_files.count }} {% translate "tracks" %}

{% csrf_token %}

{% regroup music_files by artist as artist_list %} {% for artist, music_files in artist_list %}
{% if artist == "" %} {% translate "unknown artist" %} {% else %} {{ artist }} {% endif %}
{% with hide_artist=True %} {% include "reinhardt/_music_files_list.html" %} {% endwith %}
{% endfor %} {% endblock main %}