{% extends "layouts/app.twig" %} {% block content %}
Back to TV Shows
{% if tvshow.poster_url %} {{ tvshow.title }} {% else %}
{% endif %}

{{ tvshow.title }}

{% if tvshow.tagline %}

{{ tvshow.tagline }}

{% endif %}
{% if tvshow.first_air_date %} {{ tvshow.first_air_date|date('Y') }} {% endif %} {% if tvshow.last_air_date %} Ended {{ tvshow.last_air_date|date('Y') }} {% endif %} {% if tvshow.vote_average %} {{ tvshow.vote_average }}/10 {% endif %} {% if tvshow.number_of_seasons and tvshow.number_of_episodes %} {{ tvshow.number_of_seasons }} season{{ tvshow.number_of_seasons > 1 ? 's' : '' }}, {{ tvshow.number_of_episodes }} episode{{ tvshow.number_of_episodes > 1 ? 's' : '' }} {% endif %} {{ tvshow.source_name }}
{% if tvshow.status == 'Ended' %} Ended {% elseif tvshow.status == 'Returning Series' %} Ongoing {% endif %} {% if tvshow.is_favorite %} Favorite {% endif %}
{% if tvshow.overview %}

Overview

{{ tvshow.overview }}

{% endif %}

Cast & Crew

{% if tvshow.created_by %}
Created by {{ tvshow.created_by }}
{% endif %}
{% if actors %}
Main Cast
{% for actor in actors %} {{ actor.name }} {% endfor %}
{% endif %}
{% if tvshow.genre %}

Genres

{% for genre in tvshow.genre|split(',') %} {{ genre|trim }} {% endfor %}
{% endif %} {% if tvshow.networks or tvshow.production_companies %}

Production

{% if tvshow.networks %} Networks {{ tvshow.networks }} {% endif %}
{% if tvshow.production_companies %}
Companies {{ tvshow.production_companies }}
{% endif %}
{% endif %} {% if tvshow.episode_run_time or tvshow.origin_country %}

Details

{% if tvshow.episode_run_time %} Episode Runtime {{ tvshow.episode_run_time }} minutes {% endif %}
{% if tvshow.origin_country %}
Origin Country {{ tvshow.origin_country }}
{% endif %} {% if tvshow.original_language %}
Language {{ tvshow.original_language|upper }}
{% endif %}
{% endif %}
{% if seasons %}

Seasons

{% for season in seasons %}

{% if season.episodes %}
{% for episode in season.episodes %}
{% if episode.poster_url %} {{ episode.title }} {% else %}
{% endif %}
E{{ episode.episode_number }} {% if episode.air_date %} {{ episode.air_date|date('M j, Y') }} {% endif %} {% if episode.is_watched %} Watched {% endif %}
{{ episode.title }}
{% if episode.overview %}

{{ episode.overview|slice(0, 100) }}{% if episode.overview|length > 100 %}...{% endif %}

{% endif %}
{% endfor %}
{% else %}

No episodes available.

{% endif %}
{% endfor %}
{% endif %} {% if recent_episodes %}

Recent Episodes

{% for episode in recent_episodes[:5] %}
{% if episode.still_url %} {{ episode.title }} {% else %}
{% endif %}
S{{ episode.season_number }}E{{ episode.episode_number }} {{ episode.air_date|date('M j, Y') }}
{{ episode.title }}
{% if episode.vote_average %}
{{ episode.vote_average }}/10
{% endif %}
{% endfor %}
{% endif %} {% if tvshow.streaming_providers or tvshow.availability %}

Where to Watch

{% if tvshow.streaming_providers %}
Streaming
{% for provider in tvshow.streaming_providers %} {{ provider }} {% endfor %}
{% endif %} {% if tvshow.availability %}
Availability {{ tvshow.availability }}
{% endif %}
{% endif %} {% if metadata %}
Technical Details & Metadata
{{ metadata|json_encode(constant('JSON_PRETTY_PRINT')) }}
{% endif %}
{% endblock %}