{% extends "traktplus/trakt-base.html" %} {% block trakt_title %}{{ title }}{% endblock %} {% block trakt_content %} {% if show %}
{% if show.in_collection %}
{% endif %} {% if show.in_watchlist %}
{% endif %} {% if show.rating %} {% if show.rating == 'love' %}
{% elif show.rating == 'hate' %}
{% endif %} {% endif %} {% if show.watched %}
{% endif %}
{% if not show.watched %}
{% endif %} {% if not show.in_watchlist %}
{% endif %}
{% if not show.in_collection %}
{% endif %}
Classification: {{ show.certification }}
Airs: {{ show.air_day }}s at {{ show.air_time }} on {{ show.network }}
Premiered: {{ show.first_aired }}
Runtime: {{ show.runtime }}m
Genres: {% for genre in show.genres %}{{ genre }} {% endfor %}

{{ show.overview|truncate(400, false) }} {% if show.overview|count > 400 %} [+] {% endif %}

Stats
{% endif %} {% endblock %}