Lumière

Tyler's Film Diary

A curated collection of films watched and loved

{{ total_watched }}
Films Watched
{% for _ in range(average_stars|int) %}✦{% endfor %} {{ average_stars }}
Average Rating
{% if most_watched_directors %}

Top Directors

{% for item in most_watched_directors %}
{{ item.director }} {{ item.count }} film{{ 's' if item.count > 1 else '' }}
{% endfor %}
{% endif %}

Rating Distribution

{% for item in star_distribution %}
{% if item.stars == 0 %}No rating{% elif item.stars == 1 %}{% elif item.stars == 2 %}✦✦{% elif item.stars == 3 %}✦✦✦{% endif %} {{ item.count }}
{% if total_watched > 0 %}
{% endif %}
{% endfor %}
{% if films_per_country %}

Top Countries

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

Recently Watched

{% for film in recent_films %}
{% if film.poster_url %} {{ film.title }} {% else %}
No poster
{% endif %}

{{ film.title }}

{% if film.stars %}
{% for i in range(film.stars) %}✦{% endfor %}
{% endif %} {% if film.date_watched %}
{{ film.date_watched[:10] }}
{% endif %}
{% endfor %}
{% endif %}