{% 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 %}

{% if ratings %}
{% if ratings.imdb %} IMDb {{ ratings.imdb }} {% endif %} {% if ratings.rt %} Rotten Tomatoes {{ ratings.rt }} {% endif %} {% if ratings.metacritic %} Metacritic {{ ratings.metacritic }} {% endif %}
{% endif %}
Edit {% if film.shelf == 'queue' %} Mark watched
{% elif film.shelf == 'diary' %}
{% else %} Mark watched
{% 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 %}
{% if rewatch_history|length > 1 %}

Rewatches

{% for entry in rewatch_history %}

{{ entry.date_watched }}

{% for _ in range(entry.stars) %}✦{% endfor %} {% if entry.watched_with %}with {{ entry.watched_with }}{% endif %}

{% if not loop.first %} {% set prev_entry = rewatch_history[loop.index - 2] %} {% if prev_entry.date_watched %} {% set days = (entry.date_watched - prev_entry.date_watched).days %} {{ days }}d {% if entry.stars != prev_entry.stars %} ({{ prev_entry.stars }}→{{ entry.stars }}) {% endif %} {% endif %} {% endif %}
{% endfor %}
{% endif %}
{% if film.tmdb_id %} {% endif %} {% if film.tmdb_id %} {% endif %} {% endblock %}