{% extends "traktplus/trakt-base.html" %} {% block trakt_title %}{{ title }}{% endblock %} {% block trakt_content %} {% if movie %}
{% if movie.in_collection %}
{% endif %} {% if movie.in_watchlist %}
{% endif %} {% if movie.rating %} {% if movie.rating == 'love' %}
{% elif movie.rating == 'hate' %}
{% endif %} {% endif %} {% if movie.watched %}
{% endif %}
{% if not movie.watched %}
{% endif %} {% if not movie.in_watchlist %}
{% endif %}
{% if not movie.in_collection %}
{% endif %}
{% if movie.trailer %} {% endif %}
Year: {{ movie.year }}
Classification: {{ movie.certification }}
Runtime: {{ movie.runtime }}m
Genres: {% for genre in movie.genres %}{{ genre }} {% endfor %}

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

Stats
{% endif %} {% endblock %}