{% extends "base.html" %} {% block title %}{{ selected_year }} Year in Review · Lumière{% endblock %} {% block content %}

Year in Review

{{ selected_year }}

A snapshot of the films you logged that year.

{% if total_watched == 0 %}

No entries

No diary films for this year

Pick another year or add more diary entries.

{% else %}
Films watched {{ total_watched }}
Average stars {{ "%.1f"|format(average_stars) }}
Rewatch rate {{ (rewatch_rate.rate * 100)|round(0) }}%
Top director {% if top_director %}{{ top_director.director }}{% else %}—{% endif %}
Top month {% if top_month %}{{ top_month.month }}{% else %}—{% endif %}

Monthly activity

{% set max_month = films_per_month | map(attribute='count') | max if films_per_month else 1 %} {% for item in films_per_month %}
{{ item.month[:3] }}
{{ item.count }}
{% endfor %}

Stars

{% set max_stars = star_distribution | map(attribute='count') | max if star_distribution else 1 %} {% for item in star_distribution %}
{{ item.stars }} star
{{ item.count }}
{% endfor %}

Companions

    {% for item in watched_with_breakdown %} {% if item.watched_with.lower() != 'solo' %}
  1. {{ item.watched_with }}{{ item.count }}
  2. {% endif %} {% endfor %}

Decades

    {% for item in films_per_decade %}
  1. {{ item.decade }}{{ item.count }}
  2. {% endfor %}

Genres

    {% for item in films_per_genre %}
  1. {{ item.genre }}{{ item.count }}
  2. {% endfor %}

Highlights

{% if highlight_films.highest_rated %} {% for film in highlight_films.highest_rated %} {% endfor %} {% endif %} {% if highlight_films.first_watch %} {% endif %} {% if highlight_films.last_watch %} {% endif %} {% if highlight_films.most_rewatched %} {% endif %}
{% endif %} {% endblock %}