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

{{ shelf_meta.eyebrow }}

{{ shelf_meta.title }}

{{ shelf_meta.empty_text }}

{% for stat in shelf_snapshot %}
{{ stat.label }} {{ stat.value }}
{% endfor %}
{% if active_shelf == 'queue' %} Surprise me {% endif %}
{% if imported is not none %}
{{ imported }} entries imported.
{% endif %} {% if skipped is not none and skipped %}
{{ skipped }} duplicate entries skipped.
{% endif %} {% if cleared is not none %}
{{ cleared }} entries cleared.
{% endif %} {% if deduped is not none %}
{{ deduped }} duplicate entries removed.
{% endif %} {% if empty_queue is not none %}
The queue is empty. Add a film to get a random pick.
{% endif %} {% if enriched is not none %}
{{ enriched }} entries enriched from TMDB.
{% endif %} {% if films %}
{% if active_shelf == 'diary' and grouped_films %} {% for group in grouped_films %}

{{ group.month }}

{% for film in group.films %} {% include "_film_card.html" %} {% endfor %}
{% endfor %} {% else %} {% for film in films %} {% include "_film_card.html" %} {% endfor %} {% endif %}
{% if has_more %}
{% endif %} {% else %}

{{ shelf_meta.empty_title }}

{{ shelf_meta.empty_text }}

Add Film
{% endif %} {% endblock %}