{% extends 'base.html.twig' %} {% block title %}{{ monitor.title }} — Monitors — Torsearch{% endblock %} {% block h2 %}Monitors{% endblock %} {% block body %}
{% if results.media.poster != null %} {% else %}
{% endif %}

{{ results.media.title }} ({{ results.media.year }})

{{ results.media.description }}

{% if results.media.stars != null %} Starring: {{ results.media.stars|join(', ') }}
{% endif %} {% if results.media.directors != null %} Directors: {{ results.media.directors|join(', ') }}
{% endif %} {% if results.media.producers != null %} Producers: {{ results.media.producers|join(', ') }}
{% endif %} {% if results.media.creators != null %} Creators: {{ results.media.creators|join(', ') }}
{% endif %}
{% if results.media.premiereDate %} Premiered: {{ results.media.premiereDate|date('n/j/Y', 'UTC') }}
{% endif %}
{% if results.media.genres != null %}
{# Genres:
#} {% for genre in results.media.genres %} {{ genre }} {% endfor %}
{% endif %}
{% if results.media.mediaType == "tvshows" %}
In Your Library
Seasons
{{ library.seasonCount }} full {{ library.partialSeasonCount }} partial {{ library.missingSeasonCount }} missing
Episodes
{{ library.episodeCount }} existing {{ library.missingEpisodeCount }} missing
Monitors
{{ library.monitorCount }} total {{ library.activeMonitorCount }} active {{ library.completeMonitorCount }} complete
{% endif %} {% if "movies" == results.media.mediaType %}
- results missing {{ results.media.premiereDate|date('n/j/Y', 'UTC') }} {{ results.media.runtime }} minutes
{% endif %}
{% endblock %}