{% extends "web/base.html" %} {% load humanize %} {% block secondary_nav %} {% if event and not film %} Add Film {% elif is_vote_available %} Vote For Films {% elif not has_registered and event %} Update the Calender {% endif %} {% endblock secondary_nav %} {% block content %}
There are no films left to watch!
Add a film {% else %} {% if is_vote_available %}
You must vote for all films in order to see the upcoming film. {% elif not has_registered %}
You must update the calender in order to see the upcoming film. {% else %} {% include "votes/includes/film_card.html" with film=film only %} {% endif %} {% endif %}
If someone is absent or we don't know otherwise , then we will try to avoid the films they also want to watch. {% else %}
There is no upcoming event in the calender. (I need to give you the ability to add an event!) {% if is_vote_available %}
You can still vote for films. {% else %}
You have voted for all the films; there is nothing for you to do right now. {% endif %} {% endif %} {% endblock %}