{% comment %} Takes in: - {{ film }} - {{ film.score }} - {{ film.vote_set.user }} - {{ film.has_user_voted }} - {{ is_voting }} {% 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 %} {% elif not is_voting %} Vote for films {% endif %}