{% extends "couchpotato/base.html" %} {% block couchpotato_content %} {% if couchpotato['success'] %} {% set info = couchpotato['movie']['library']['info'] %}
poster

{{ couchpotato['movie']['library']['info']['original_title'] }}

{% if info['year'] %} {% endif %} {% if info['rating'] and info['rating']['imdb'] %} {% endif %} {% if info['genres'] %} {% endif %} {% if info['release_date']['dvd'] %} {% endif %} {% if info['released'] %} {% endif %} {% if info['writers'] %} {% endif %} {% if info['directors'] %} {% endif %} {% if info['actors'] %} {% endif %} {% if info['runtime'] %} {% endif %}
Year:   {{info['year']}}
Rating:   {{info['rating']['imdb'][0]}}/10 ({{info['rating']['imdb'][1]}} votes)
Genres:   {% for genre in info['genres'] %} {{genre}} {%if not loop.last%}|{%endif%} {% endfor %}
DVD:   {{info['release_date']['dvd']|time}}
Theater:   {{info['released']}}
Writers:   {%for writer in info['writers']%} {{writer}}{%if not loop.last%},{%endif%} {%endfor%}
Directors:   {%for director in info['directors']%} {{director}}{%if not loop.last%},{%endif%} {%endfor%}
Actors:   {%for actor in info['actors']%} {{actor}}{%if not loop.last%},{%endif%} {%endfor%}
Runtime:   {{info['runtime']}}
Profile:   {% if profiles %} {% else %} {{couchpotato['movie']['profile']['label']}} {% endif %}
{% if info['plot'] %}


Plot:
{{info['plot']}}

{% endif %}
{% else %}

An error ocurred

{%endif%} {% endblock %}