{% 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 %}
{% endif %}
{% endfor %}
{% endblock main %}