{% comment %} Takes in: - {{ film }} - {{ film.score }} - {{ film.vote_set.user }} {% endcomment %} {% load films_extras %}

{{ film.title }} {% if film.is_watched %} 👀 {% endif %}

({{ film.year }})

{{ film.genre }}
· {{ film.runtime_mins|duration_format }}

{{ film.plot }}

{% if film.has_user_voted %} {% for vote in film.vote_set.all %} {{ vote.user.username|slice:":3" }} {% endfor %} {% else %} Vote for (this) film {% endif %}