{% extends "item_base.html" %} {% load static %} {% load i18n %} {% load l10n %} {% load humanize %} {% load mastodon %} {% load strip_scheme %} {% load thumb %} {% block details %}
{% include '_people.html' with people=item.additional_title role='' max=99 %}
{% 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.duration %} {% trans 'length' %}: {{ item.duration }} {% 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.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 %}