Lumière

Public Ledger

Tyler's Film Diary

A public cut of the diary: recent watches, recurring directors, and the films that keep returning.

Watched {{ total_watched }}
Average {{ average_stars }}

Rotation

Most watched directors

{% for item in most_watched_directors %}
{{ item.director }} {{ item.count }}
{% endfor %}

Distribution

Ratings

{% for item in star_distribution %}
{% if item.stars == 0 %}Unrated{% else %}{% for _ in range(item.stars) %}✦{% endfor %}{% endif %}
{% if total_watched > 0 %}
{% endif %}
{{ item.count }}
{% endfor %}
{% if films_per_country %}

Geography

Most watched countries

{% for item in films_per_country %}
{{ item.count }} {{ item.country }}
{% endfor %}
{% endif %} {% if recent_films %}

Recent

Recently watched

{% for film in recent_films %}
{% if film.poster_url %} {{ film.title }} poster {% else %} {{ film.title[:1] }} {% endif %}

{{ film.title }}

{{ film.year }}{% if film.director %} · {{ film.director }}{% endif %}

{% if film.date_watched %} {{ film.date_watched[:10] }} {% endif %}
{% endfor %}
{% endif %}