{% 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 title %}
{% if item.season_number %} {{ item.title }} {{ item.orig_title }} Season {{ item.season_number }} {% if item.year %}({{ item.year }}){% endif %} {% else %} {{ item.title }} {{ item.orig_title }} {% if item.year %}({{ item.year }}){% endif %} {% endif %} {% for res in item.external_resources.all %} {{ res.site_name.label }} {% endfor %}
{% endblock %} {% block details %}
{% if item.show %} {% trans '所属剧集:' %}{{ item.show.title }} {% endif %}
{% with item.all_seasons as seasons %} {% if seasons %}
{% trans '本剧所有季:' %} {% for s in seasons %} {{ s.season_number|default:"#" }} {% endfor %}
{% endif %} {% endwith %}
{% 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 %} {% for time, region in showtime.items %} {{ time }} {% if region != '' %}({{ region }}){% endif %} {% endfor %} {% 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 %}
{% 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 %} {% block sidebar %}{% endblock %}