{% extends "item_base.html" %} {% load static %} {% load i18n %} {% load l10n %} {% load humanize %} {% load mastodon %} {% load strip_scheme %} {% load thumb %} {% block details %}
{% include '_people.html' with people=item.additional_title _role='' max=99 %}
{% if item.opening_date %} {% trans "opening date" %}: {{ item.opening_date }} {% if item.closing_date %}~ {{ item.closing_date }}{% endif %} {% endif %}
{% include '_people.html' with people=item.genre role='genre' max=5 %}
{% include '_people.html' with people=item.troupe role='troupe' max=5 %}
{% include '_people.html' with people=item.location role='theater' max=5 %}
{% include '_people.html' with people=item.language role='language' max=5 %}
{% include '_people.html' with people=item.orig_creator role='original creator' max=5 %}
{% include '_people.html' with people=item.director role='director' max=5 %}
{% include '_people.html' with people=item.playwright role='playwright' max=5 %}
{% include '_people.html' with people=item.composer role='composer' max=5 %}
{% include '_people.html' with people=item.choreographer role='choreographer' max=5 %}
{% include '_actor.html' with people=item.actor role='actor' max=10 %}
{% include '_people.html' with people=item.performer role='performer' max=10 %}
{% include '_crew.html' with people=item.crew_by_role role='crew' max=10 %}
{% if item.official_site %} {% trans 'website' %}: {{ item.official_site|urlizetrunc:24 }} {% endif %}
{% endblock %} {% block content %} {% with item.all_productions as productions %} {% if productions %}
{% trans 'production' %}
{% for prod in productions %}
{{ prod.display_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='troupe' max=2 %} {% include '_people.html' with people=prod.location _role='production theater' max=2 %} {% include '_people.html' with people=prod.language _role='language' max=5 %}
{% include '_people.html' with people=prod.director role='director' max=2 %} {% include '_people.html' with people=prod.playwright role='playwright' max=2 %} {% include '_actor.html' with people=prod.actor role='actor' max=5 %} {% include '_people.html' with people=prod.performer role='performer' max=5 %} {% include '_people.html' with people=prod.composer role='composer' max=2 %} {% include '_people.html' with people=prod.choreographer role='choreographer' max=2 %}
{% endfor %}
{% endif %} {% endwith %} {% endblock %}