{% 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 %}
There is no upcoming event in the calender.
(I need to add the ability for you create an event!) {% if is_vote_available %}
You can still vote for films. {% endif %} {% endif %} {% endblock %}