{% extends "item_base.html" %} {% load static %} {% load i18n %} {% load l10n %} {% load humanize %} {% load mastodon %} {% load strip_scheme %} {% load thumb %} {% block details %} {% with item.all_seasons as seasons %} {% if seasons %}
{% trans 'all seasons' %}: {% for s in seasons %} {{ s.season_number|default:"#" }} {% endfor %}
{% endif %} {% endwith %}
{% include '_people.html' with people=item.director role='director' max=5 %}
{% include '_people.html' with people=item.playwright role='playwright' max=5 %}
{% include '_people.html' with people=item.actor role='actor' max=5 %}
{% include '_people.html' with people=item.genre role='genre' max=10 %}
{% include '_people.html' with people=item.area role='region' max=10 %}
{% include '_people.html' with people=item.language role='language' max=5 %}
{% if item.season_number %} {% trans 'season number' %}: {{ item.season_number }} {% endif %}
{% if item.season_count %} {% trans 'number of seasons' %}: {{ item.season_count }} {% endif %}
{% if item.episode_count %} {% trans 'number of episodes' %}: {{ item.episode_count }} {% endif %}
{% if item.single_episode_length %} {% trans 'episode Length' %}: {{ item.single_episode_length }} {% endif %}
{% if item.duration %} {% trans 'length' %}: {{ item.duration }} {% endif %}
{% if item.showtime %} {% trans 'release date' %}: {% for showtime in item.showtime %} {{ showtime.time }} {% if showtime.region %}({{ showtime.region }}){% endif %} {% if not forloop.last %}/{% endif %} {% endfor %} {% endif %}
{% if item.imdb %} {% trans 'IMDb' %}: {{ item.imdb }} {% endif %}
{% if item.site %} {% trans 'website' %}: {{ item.site|strip_scheme }} {% endif %}
{% if item.other_info %} {% for k, v in item.other_info.items %}
{{ k }}: {{ v|urlizetrunc:24 }}
{% endfor %} {% endif %} {% endblock %}