{% extends "base.html" %} {% block title %}{{ film.title }} · Lumière{% endblock %} {% block content %}

{{ film.shelf|title }} Entry

{{ film.title }}

{% if film.original_title %}

{{ film.original_title }}

{% endif %}

{% if film.year %}{{ film.year }}{% endif %} {% set directors = split_credit_names(film.director) %} {% if directors %} {% if film.year %} · {% endif %} {% for director in directors %} {{ director }}{% if not loop.last %}, {% endif %} {% endfor %} {% endif %}

Watch log

{% if film.date_watched %}{{ film.date_watched }}{% endif %} {% if film.runtime %}{{ film.runtime }} min{% endif %} {% if film.rewatch %}Rewatch{% if film.rewatch_count %} #{{ film.rewatch_count }}{% endif %}{% endif %} {% if film.watched_with %}With {{ film.watched_with }}{% endif %} {% if film.context %}{{ film.context }}{% endif %} {% if film.how_found %}{{ film.how_found }}{% endif %}

Production

{% if film.genre %}{{ film.genre }}{% endif %} {% if film.country %}{{ film.country }}{% endif %} {% if film.language %}{{ film.language }}{% endif %} {% if film.year %}{{ film.year }}{% endif %} {% if film.tmdb_id %}TMDB {{ film.tmdb_id }}{% endif %}
{% if tmdb_context %}

Summary

{% if tmdb_context.tagline %}

{{ tmdb_context.tagline }}

{% endif %} {% if tmdb_context.overview %}

{{ tmdb_context.overview }}

{% endif %} {% if tmdb_context.cast %}
Cast

{{ tmdb_context.cast|join(", ") }}

{% endif %}
{% endif %}

Notes

{% if film.notes %}
{{ film.notes }}
{% else %}

No notes saved.

{% endif %}
Edit {% if film.shelf == 'queue' %} Mark watched
{% elif film.shelf == 'diary' %}
{% else %} Mark watched
{% endif %}
{% if film.tmdb_id %} {% endif %} {% endblock %}