{% 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 %}

Upcoming

{% if event %}

The next event is {{ event.date|naturalday|capfirst }}

{% if not film %}

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 %}

Register

    {% for user in present_users %}
  1. 🗹 {{ user.username }} {% endfor %} {% for user in absent_users %}
  2. 🗷 {{ user.username }} {% endfor %} {% for user in unknown_users %}
  3. ☐ {{ user.username }} {% endfor %}
{% 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 %}