{% extends "list_item_base.html" %} {% load i18n %} {% load highlight %} {% block brief %}
{% 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 %}
{% if item.opening_date %}{{ item.opening_date }}{% endif %}
{% endblock %} {% block full %}
{% include '_people.html' with people=item.other_title role='又名' max=2 %}
{% include '_people.html' with people=item.director role='导演' max=2 %}
{% include '_people.html' with people=item.playwright role='编剧' max=2 %}
{% include '_people.html' with people=item.performer role='演员' max=5 %}
{% include '_people.html' with people=item.composer role='作曲' max=2 %}
{% include '_people.html' with people=item.choreographer role='编舞' max=2 %}
{% include '_people.html' with people=item.crew role='演职人员' max=2 %}
{% endblock %}