{% extends "item_base.html" %} {% load static %} {% load i18n %} {% load l10n %} {% load humanize %} {% load mastodon %} {% load strip_scheme %} {% load thumb %} {% load duration %} {% block details %}
{% include '_people.html' with people=item.additional_title role='' max=99 %}
{% include '_people.html' with people=item.artist role='artist' max=5 %}
{% include '_people.html' with people=item.company role='publisher' max=5 %}
{% if item.release_date %} {% trans 'release date' %}: {{ item.release_date }} {% endif %}
{% if item.duration %} {% trans 'duration' %}: {{ item.duration|duration_format:1000 }} {% endif %}
{% include '_people.html' with people=item.genre role='genre' max=5 %}
{% if item.barcode %} {% trans 'barcode' %}: {{ item.barcode }} {% endif %}
{% if item.album_type %} {% trans 'album type' %}: {{ item.album_type }} {% endif %}
{% if item.media %} {% trans 'album media' %}: {{ item.media }} {% endif %}
{% if item.disc_count %} {% trans 'number of discs' %}: {{ item.disc_count }} {% endif %}
{% endblock %} {% block content %} {% if item.track_list %}
tracks

{{ item.track_list | linebreaksbr }}

{% endif %} {% endblock %}