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

{{ film.title }}

{% if film.year %}{{ film.year }}{% endif %} {% set directors = split_credit_names(film.director) %} {% if directors %} {% if film.year %} · {% endif %} {{ directors|join(", ") }} {% endif %}

{% if film.stars %} {% for _ in range(film.stars) %}✦{% endfor %} {% endif %}
Diary {% if film.date_watched %}{{ film.date_watched }}{% endif %} {% if film.runtime %}{{ film.runtime }} min{% endif %} {% if film.rewatch %}Rewatch{% if film.rewatch_count %} #{{ film.rewatch_count }}{% endif %}{% endif %}
{% if film.language or film.genre or film.context or film.how_found or film.watched_with %}
{% if film.language %}
Lang {{ film.language }}
{% endif %} {% if film.genre %}
Genre {{ film.genre }}
{% endif %} {% if film.context %}
Context {{ film.context }}
{% endif %} {% if film.how_found %}
Found {{ film.how_found }}
{% endif %} {% if film.watched_with %}
With {{ film.watched_with }}
{% endif %}
{% endif %}
{% endfor %}