{% extends "item_base.html" %} {% load static %} {% load i18n %} {% load l10n %} {% load humanize %} {% load admin_url %} {% load mastodon %} {% load oauth_token %} {% load truncate %} {% load strip_scheme %} {% load thumb %} {% block details %}
{% 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 %}
{% with item.all_seasons as seasons %} {% if seasons %}
{% trans '本剧所有季:' %} {% for s in seasons %} {{ s.season_number|default:"#" }} {% endfor %}
{% endif %} {% endwith %}
{% if item.season_count %} {% trans '季数:' %}{{ item.season_count }} {% endif %}
{% if item.episode_count %} {% trans '集数:' %}{{ item.episode_count }} {% endif %}
{% if item.single_episode_length %} {% trans '单集长度:' %}{{ item.single_episode_length }} {% 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.imdb %} {% trans 'IMDb:' %}{{ item.imdb }} {% endif %}
{% if item.site %} {% trans '网站:' %} {{ item.site|strip_scheme }} {% endif %}
{% if item.other_info %} {% for k, v in item.other_info.items %}
{{ k }}:{{ v|urlizetrunc:24 }}
{% endfor %} {% endif %} {% endblock %}