{% 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 %}
{% include '_people.html' with people=item.other_title _role='其他标题' max=5 %}
{% if item.opening_date %} 上演时间:{{ item.opening_date }} {% if item.closing_date %}~ {{ item.closing_date }}{% endif %} {% endif %}
{% include '_people.html' with people=item.genre role='类型' max=5 %}
{% include '_people.html' with people=item.troupe role='剧团' max=5 %}
{% include '_people.html' with people=item.location role='剧院' max=5 %}
{% include '_people.html' with people=item.language role='语言' max=5 %}
{% include '_people.html' with people=item.orig_creator role='原作' max=5 %}
{% include '_people.html' with people=item.director role='导演' max=5 %}
{% include '_people.html' with people=item.playwright role='编剧' max=5 %}
{% include '_people.html' with people=item.composer role='作曲' max=5 %}
{% include '_people.html' with people=item.choreographer role='编舞' max=5 %}
{% include '_actor.html' with people=item.actor role='演员' max=10 %}
{% include '_people.html' with people=item.performer role='表演者' max=10 %}
{% include '_crew.html' with people=item.crew_by_role role='演职人员' max=10 %}
{% if item.official_site %} {% trans '官方网站' %}: {{ item.official_site|urlizetrunc:24 }} {% endif %}
{% endblock %} {% block content %} {% with item.all_productions as productions %} {% if productions %}
{% trans '上演版本' %}
{% for prod in productions %}
{{ prod.title }}
{% if prod.opening_date %} {{ prod.opening_date }} {% if prod.closing_date %}~ {{ prod.closing_date }}{% endif %} {% endif %} {% include '_people.html' with people=prod.troupe _role='剧团' max=2 %} {% include '_people.html' with people=prod.location _role='上演剧院' max=2 %} {% include '_people.html' with people=prod.language _role='语言' max=5 %}
{% include '_people.html' with people=prod.orig_creator role='原作' max=2 %} {% include '_people.html' with people=prod.director role='导演' max=2 %} {% include '_people.html' with people=prod.playwright role='编剧' max=2 %} {% include '_actor.html' with people=prod.actor role='演员' max=5 %} {% include '_people.html' with people=prod.performer role='表演者' max=5 %} {% include '_people.html' with people=prod.composer role='作曲' max=2 %} {% include '_people.html' with people=prod.choreographer role='编舞' max=2 %}
{% endfor %}
{% endif %} {% endwith %} {% endblock %}