{% include 'menu.css' %}
{% include 'menu.htm' %}
{{T('Play')}}
{{T('Show on IMDB')}}
{{T('Show on Wikipedia')}}
{{T('Search on Google')}}
{{T('History')}}:
{{T('Title')}}
{{record.title}}
{{T('Year')}}
{{record.year}}
{{T('Director')}}
{% if not record.director_list %}
Not specified
{% else %} {% for director in record.director_list %} {% if loop.index <= 2 %}
{{director}}
{% else %}
...
{% endif %} {% endfor %} {% endif %}
{{T('Cast')}}
{% if not record.actor_list %}
Not specified
{% else %} {% for actor in record.actor_list %} {% if loop.index < loop.length %}
{{actor}}
{% else %}
...
{% endif %} {% endfor %} {% endif %}
{{T('Runtime')}}
{{record.runtime}} minutes
{{T('Dimension')}}
{{record.width}} x {{record.height}}
{{T('File size')}}
{{record.filesize|filesizeformat}} ({{space_thousands(record.filesize)}} octets)
{% for director, movies, paths in zip(record.director_list, record.dirothermovies, record.path_to_dirothermovies) %} {% if director %}
{{T('Other movies of')}} {{director}} {{T('in collection')}}
{% if not movies %}
None
{% else %} {% for movie, path in zip(movies, paths) %}
{{movie}}
{% endfor %} {% endif %}
{% endif %} {% endfor %} {% for actor, movies, paths in zip(record.actor_list, record.castothermovies, record.path_to_castothermovies) %} {% if movies %}
{{T('Other movies of')}} {{actor}} {{T('in collection')}}
{% for movie, path in zip(movies, paths) %}
{{movie}}
{% endfor %}
{% endif %} {% endfor %}