{% extends "item_base.html" %} {% load static %} {% load i18n %} {% load l10n %} {% load humanize %} {% load mastodon %} {% load strip_scheme %} {% load thumb %} {% load duration %} {% block details %}
{% if item.artist %} {% trans '艺术家:' %} {% for artist in item.artist %} 5 %}style="display: none;"{% endif %}> {{ artist }} {% if not forloop.last %}/{% endif %} {% endfor %} {% if item.artist|length > 5 %} {% trans '更多' %} {% endif %} {% endif %}
{% if item.company %} {% trans '发行方:' %} {% for company in item.company %} 5 %}style="display: none;"{% endif %}> {{ company }} {% if not forloop.last %}/{% endif %} {% endfor %} {% if item.company|length > 5 %} {% trans '更多' %} {% endif %} {% endif %}
{% if item.release_date %} {% trans '发行日期:' %}{{ item.release_date }} {% endif %}
{% if item.duration %} {% trans '时长:' %}{{ item.duration|duration_format:1000 }} {% endif %}
{% if item.genre %} {% trans '流派:' %} {% for genre in item.genre %} {{ genre }} {% if not forloop.last %}/{% endif %} {% endfor %} {% endif %}
{% if item.barcode %} {% trans '条形码:' %}{{ item.barcode }} {% endif %}
{% if item.other_title %} {% trans '又名:' %} {% for t in item.other_title %} {{ t }} {% if not forloop.last %}/{% endif %} {% endfor %} {% endif %}
{% if item.album_type %} {% trans '专辑类型:' %}{{ item.album_type }} {% endif %}
{% if item.media %} {% trans '介质:' %}{{ item.media }} {% endif %}
{% if item.disc_count %} {% trans '碟片数:' %}{{ item.disc_count }} {% endif %}
{% endblock %} {% block content %} {% if item.track_list %}
曲目

{{ item.track_list | linebreaksbr }}

{% endif %} {% if item.get_embed_link %}
播放
{% endif %} {% endblock %}