{% 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:24 }}
{% endif %}