{% if movie.season %} {{ movie.title }} {% trans '第' %}{{ movie.season|apnumber }}{% trans '季' %} {{ movie.orig_title }} Season {{ movie.season }} {% if movie.year %}({{ movie.year }}){% endif %} {% else %} {{ movie.title }} {{ movie.orig_title }} {% if movie.year %}({{ movie.year }}){% endif %} {% endif %}
{% if movie.imdb_code %}
{% trans 'IMDb:' %}{{ movie.imdb_code }}
{% endif %}
{% if movie.director %}{% trans '导演:' %}
{% for director in movie.director %}
{{ director }}{% if not forloop.last %} / {% endif %}
{% endfor %}
{% endif %}
{% if movie.playwright %}{% trans '编剧:' %}
{% for playwright in movie.playwright %}
{{ playwright }}{% if not forloop.last %} / {% endif %}
{% endfor %}
{% endif %}
{% if movie.actor %}{% trans '主演:' %}
{% for actor in movie.actor %}
5 %}style="display: none;" {% endif %}>{{ actor }}
{% if forloop.counter <= 5 %}
{% if not forloop.last %} / {% endif %}
{% endif %}
{% endfor %}
{% if movie.actor|length > 5 %}
{% trans '更多' %}
{% endif %}
{% endif %}
{% if movie.genre %}{% trans '类型:' %}
{% for genre in movie.get_genre_display %}
{{ genre }}{% if not forloop.last %} / {% endif %}
{% endfor %}
{% endif %}
{% if movie.area %}{% trans '制片国家/地区:' %}
{% for area in movie.area %}
{{ area }}{% if not forloop.last %} / {% endif %}
{% endfor %}
{% endif %}
{% if movie.language %}{% trans '语言:' %}
{% for language in movie.language %}
{{ language }}{% if not forloop.last %} / {% endif %}
{% endfor %}
{% endif %}
{% if movie.duration %}{% trans '片长:' %}{{ movie.duration }}{% endif %}
{% if movie.season %}{% trans '季数:' %}{{ movie.season }}{% endif %}
{% if movie.episodes %}{% trans '集数:' %}{{ movie.episodes }}{% endif %}
{% if movie.single_episode_length %}{% trans '单集长度:' %}{{ movie.single_episode_length }}{% endif %}
{% if movie.showtime %}{% trans '上映时间:' %}
{% for showtime in movie.showtime %}
{% for time, region in showtime.items %}
{{ time }}({{ region }})
{% endfor %}
{% if not forloop.last %} / {% endif %}
{% endfor %}
{% endif %}
{% if movie.other_title %}{% trans '又名:' %}
{% for other_title in movie.other_title %}
{{ other_title }}{% if not forloop.last %} / {% endif %}
{% endfor %}
{% endif %}
{% if movie.site %}{% trans '网站:' %}
{{ movie.site }}
{% endif %}
{% if movie.other_info %}
{% for k, v in movie.other_info.items %}
{{k}}:{{v}}
{% endfor %}
{% endif %}
{% if movie.last_editor %}
{% trans '最近编辑者:' %}{{ movie.last_editor | default:"" }}
{% endif %}
{% if movie.is_series %}
{% trans '编辑这部剧集' %}
{% else %}
{% trans '编辑这部电影' %}
{% endif %}
{% if user.is_staff %}
/ {% trans '删除' %}
{% endif %}
{% for tag_dict in movie_tag_list %}
{% for k, v in tag_dict.items %}
{% if k == 'content' %}
{{ v }}
{% endif %}
{% endfor %}
{% endfor %}
{% trans '简介' %}
{% if movie.brief %}{{ movie.brief | linebreaksbr }}
{% else %}{% trans '暂无简介' %}
{% endif %}
{% trans '目录' %}
{{ movie.contents | linebreaksbr }}
{% if movie.is_series %}
{% trans '这部剧集的标记' %}
{% else %}{% trans '这部电影的标记' %}
{% endif %} {% if mark_list_more %} {% trans '更多' %} {% endif %} {% if mark_list %}-
{% for others_mark in mark_list %}
-
{{ others_mark.owner.username }}
{{ others_mark.get_status_display }}
{% if others_mark.rating %}
{% endif %}
{% if others_mark.is_private %}
{% endif %}
{{ others_mark.edited_time }}
{% if others_mark.text %}
{{ others_mark.text }}
{% endif %}
{% endfor %}
{% trans '暂无标记' %}
{% endif %}
{% if movie.is_series %}
{% trans '这部剧集的评论' %}
{% else %}{% trans '这部电影的评论' %}
{% endif %} {% if review_list_more %} {% trans '更多' %} {% endif %} {% if review_list %}-
{% for others_review in review_list %}
-
{{ others_review.owner.username }}
{% if others_review.is_private %}
{% endif %} {{ others_review.edited_time }} {{ others_review.title }}
{% endfor %}
{% trans '暂无评论' %}
{% endif %}
{% if mark %}
{% trans '我' %}{{ mark.get_status_display }}
{% if mark.status == status_enum.DO.value or mark.status == status_enum.COLLECT.value%}
{% if mark.rating %}
{% endif %}
{% endif %}
{% if mark.is_private %}
{% endif %}
{% trans '修改' %}
{% else %}
{{ mark.edited_time }}
{% if mark.text %}
{{ mark.text }}
{% endif %}
{% for tag in mark_tags %}
{{ tag }}
{% endfor %}
{% if movie.is_series %}
{% endif %}
{% trans '标记这部剧集' %}
{% else %}
{% trans '标记这部电影' %}
{% endif %}
{% if review %}
{% endif %}
{% trans '我的评论' %}
{% if review.is_private %}
{% endif %}
{% trans '编辑' %}
{% trans '删除' %}
{% else %}
{{ review.edited_time }}
{{ review.title }}
{% trans '我的评论' %}