{% if item.director %}
{% trans '导演:' %}
{% for director in item.director %}
5 %}style="display: none;"{% endif %}>
{{ director }}
{% if not forloop.last %}/{% endif %}
{% endfor %}
{% if item.director|length > 5 %}
{% trans '更多' %}
{% endif %}
{% endif %}
{% if item.playwright %}
{% trans '编剧:' %}
{% for playwright in item.playwright %}
5 %}style="display: none;"{% endif %}>
{{ playwright }}
{% if not forloop.last %}/{% endif %}
{% endfor %}
{% if item.playwright|length > 5 %}
{% trans '更多' %}
{% endif %}
{% endif %}
{% if item.actor %}
{% trans '主演:' %}
{% for actor in item.actor %}
5 %}style="display: none;"{% endif %}>
{{ actor }}
{% if not forloop.last %}/{% endif %}
{% endfor %}
{% if item.actor|length > 5 %}
{% trans '更多' %}
{% endif %}
{% endif %}
{% if item.genre %}
{% trans '类型:' %}
{% for genre in item.genre %}
{{ genre }}
{% if not forloop.last %}/{% endif %}
{% endfor %}
{% endif %}
{% if item.area %}
{% trans '制片国家/地区:' %}
{% for area in item.area %}
{{ area }}
{% if not forloop.last %}/{% endif %}
{% endfor %}
{% endif %}
{% if item.language %}
{% trans '语言:' %}
{% for language in item.language %}
{{ language }}
{% if not forloop.last %}/{% endif %}
{% endfor %}
{% endif %}
{% if item.showtime %}
{% trans '上映时间:' %}
{% for showtime in item.showtime %}
{{ showtime.time }}
{% if showtime.region %}({{ showtime.region }}){% endif %}
{% if not forloop.last %}/{% endif %}
{% endfor %}
{% endif %}
{% if item.other_title %}
{% trans '又名:' %}
{% for t in item.other_title %}
{{ t }}
{% if not forloop.last %}/{% endif %}
{% endfor %}
{% endif %}
{% if item.season_count %}
{% trans '总季数:' %}{{ item.season_count }}
{% endif %}
{% if item.season_number %}
{% trans '本季序号:' %}{{ item.season_number }}
{% endif %}
{% if item.episode_count %}
{% trans '本季集数:' %}{{ item.episode_count }}
{% endif %}
{% if item.single_episode_length %}
{% trans '单集长度:' %}{{ item.single_episode_length }}
{% endif %}
{% if item.imdb %}
{% trans 'IMDb:' %}{{ item.imdb }}
{% endif %}