{% 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 }} {% trans '第' %}{{ item.season_number|apnumber }}{% trans '季' %} {{ 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.rating %} {{ item.rating|floatformat:1 }} ({{ item.rating_count }}人评分) {% else %} {% trans '评分:评分人数不足' %} {% endif %}
{% if item.imdb %} {% trans 'IMDb:' %}{{ item.imdb }} {% endif %}
{% 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.duration %}{% trans '片长:' %}{{ item.duration }}{% endif %}
{% 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 %} {% for time, region in showtime.items %} {{ time }}{% if region != '' %}({{ region }}){% endif %} {% endfor %} {% if not forloop.last %} / {% endif %} {% endfor %} {% endif %}
{% if item.other_title %}{% trans '又名:' %} {{ item.other_title }} {% endif %}
{% if item.site %}{% trans '网站:' %} {{ item.site|strip_scheme }} {% endif %}
{% if item.other_info %} {% for k, v in item.other_info.items %}
{{ k }}:{{ v | urlize }}
{% endfor %} {% endif %} {% if item.last_editor and item.last_editor.preference.show_last_edit %}
{% trans '最近编辑者:' %}{{ item.last_editor | default:"" }}
{% endif %}
{% if user.is_authenticated %} {% trans '编辑' %}{{ item.demonstrative }} {% endif %}
{% endblock %} {% block sidebar %} {% endblock %}