22 lines
1.2 KiB
HTML
22 lines
1.2 KiB
HTML
{% extends "list_item_base.html" %}
|
|
{% load i18n %}
|
|
{% load highlight %}
|
|
{% block brief %}
|
|
<div>{% include '_people.html' with people=item.genre _role='类型' max=5 %}</div>
|
|
<div></div>
|
|
<div>{% include '_people.html' with people=item.troupe _role='剧团' max=5 %}</div>
|
|
<div>{% include '_people.html' with people=item.location _role='剧院' max=5 %}</div>
|
|
<div>
|
|
{% if item.opening_date %}<span>{{ item.opening_date }}</span>{% endif %}
|
|
</div>
|
|
{% endblock %}
|
|
{% block full %}
|
|
<div>{% include '_people.html' with people=item.other_title role='又名' max=2 %}</div>
|
|
<div>{% include '_people.html' with people=item.director role='导演' max=2 %}</div>
|
|
<div>{% include '_people.html' with people=item.playwright role='编剧' max=2 %}</div>
|
|
<div>{% include '_people.html' with people=item.actor role='演员' max=5 %}</div>
|
|
<div>{% include '_people.html' with people=item.performer role='表演者' max=5 %}</div>
|
|
<div>{% include '_people.html' with people=item.composer role='作曲' max=2 %}</div>
|
|
<div>{% include '_people.html' with people=item.choreographer role='编舞' max=2 %}</div>
|
|
<div>{% include '_people.html' with people=item.crew role='演职人员' max=2 %}</div>
|
|
{% endblock %}
|