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

{% translate "Albums from" %} {{ artist }} - {{ music_files.count }} {% translate "tracks" %}

{% csrf_token %}

{% regroup music_files by album as album_list %} {% for album, music_files in album_list %}
{% if album == "" %} {% translate "unknown album" %} {% else %} {{ album }} {% endif %}
{% with hide_artist=True %} {% include "reinhardt/_music_files_list.html" %} {% endwith %} {% if album != "" and False %}
{% csrf_token %}
{% endif %}
{% endfor %} {% endblock main %}