{% extends "item_base.html" %} {% load static %} {% load i18n %} {% load l10n %} {% load humanize %} {% load admin_url %} {% load mastodon %} {% load oauth_token %} {% load truncate %} {% load strip_scheme %} {% load thumb %} {% block details %}
{% if item.rating and item.rating_count >= 5 %} {{ item.rating | floatformat:1 }} ({{ item.rating_count }}人评分) {% else %} {% trans '评分:评分人数不足' %} {% endif %}
{% if item.other_title %}{% trans '别名:' %} {% for other_title in item.other_title %} 5 %}style="display: none;" {% endif %}> {{ other_title }} {% if not forloop.last %} / {% endif %} {% endfor %} {% if item.other_title|length > 5 %} {% trans '更多' %} {% endif %} {% endif %}
{% if item.genre %}{% trans '类型:' %} {% for genre in item.genre %} {{ genre }}{% if not forloop.last %} / {% endif %} {% endfor %} {% endif %}
{% if item.director %}{% trans '导演:' %} {% for director in item.director %} {{ director }}{% if not forloop.last %} / {% endif %} {% endfor %} {% endif %}
{% if item.playwright %}{% trans '编剧:' %} {% for playwright in item.playwright %} {{ playwright }}{% if not forloop.last %} / {% endif %} {% endfor %} {% endif %}
{% if item.actor %}{% trans '主演:' %} {% for actor in item.actor %} {{ actor }}{% if not forloop.last %} / {% endif %} {% endfor %} {% endif %}
{% if item.choreographer %}{% trans '编舞:' %} {% for choreographer in item.choreographer %} {{ choreographer }}{% if not forloop.last %} / {% endif %} {% endfor %} {% endif %}
{% if item.composer %}{% trans '作曲:' %} {% for composer in item.composer %} {{ composer }}{% if not forloop.last %} / {% endif %} {% endfor %} {% endif %}
{% if item.troupe %}{% trans '剧团:' %} {% for troupe in item.troupe %} {{ troupe }}{% if not forloop.last %} / {% endif %} {% endfor %} {% endif %}
{% if item.theatre %}{% trans '剧场:' %} {% for theatre in item.theatre %} {{ theatre }}{% if not forloop.last %} / {% endif %} {% endfor %} {% endif %}
{% if item.opening_date %}{% trans '演出日期:' %} {{ item.opening_date }} {% endif %}
{% if item.version %}{% trans '版本:' %} {% for version in item.version %} {{ version }}{% if not forloop.last %} / {% endif %} {% endfor %} {% endif %}
{% if item.official_site %} {% trans '官方网站:' %}{{ item.official_site|urlizetrunc:42 }} {% endif %}
{% if item.last_editor and item.last_editor.preference.show_last_edit %}
{% trans '最近编辑者:' %}{{ item.last_editor | default:"" }}
{% endif %}
{% if user.is_authenticated %} {% trans '编辑' %}{{ item.demonstrative }} {% endif %}
{% endblock %} {% block sidebar %} {% endblock %}