{% 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 %} {% for director in directors %} {{ director }}{% if not loop.last %}, {% endif %} {% endfor %} {% endif %}

{% if film.shelf == 'diary' %}
{% for value in range(1, 4) %} {% endfor %}
{% elif film.stars %} {% for _ in range(film.stars) %}✦{% endfor %} {% endif %}
{{ film.shelf|title }} {% if film.date_watched %}{{ film.date_watched }}{% endif %} {% if film.runtime %}{{ film.runtime }} min{% endif %} {% if film.language %}{{ film.language }}{% endif %} {% if film.rewatch %}Rewatch{% if film.rewatch_count %} #{{ film.rewatch_count }}{% endif %}{% endif %}
{% if film.genre or film.context or film.how_found or film.watched_with %}
{% if film.genre %}{{ film.genre }}{% endif %} {% if film.context %}{{ film.context }}{% endif %} {% if film.how_found %}{{ film.how_found }}{% endif %} {% if film.watched_with %}With {{ film.watched_with }}{% endif %}
{% endif %} {% if film.notes %}

{{ film.notes[:220] }}{% if film.notes|length > 220 %}...{% endif %}

{% endif %}
{% if film.shelf == 'queue' %} Mark watched
{% elif film.shelf == 'diary' %}
{% else %} Mark watched
{% endif %}