{% if item.rating and item.rating_number >= 5 %}
{{ item.rating }}
({{ item.rating_number }}人评分)
{% else %}
{% trans '评分:评分人数不足' %}
{% endif %}
{% 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.get_duration_display }}
{% endif %}
{% if item.genre %}
{% trans '流派:' %}{{ item.genre }}
{% endif %}
{% if item.barcode %}
{% trans '条形码:' %}{{ item.barcode }}
{% endif %}
{% if item.other_title %}
{% trans '又名:' %}{{ item.other_title }}
{% 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 %}
{% if item.last_editor and item.last_editor.preference.show_last_edit or user.is_staff %}