{% extends "web/base.html" %} {% load humanize %} {% block content %}

Upcoming

{% if event %}

{{ event.date|naturalday|capfirst }}

{% else %}

No upcoming event.

{% endif %} {% if has_registered %} {% if film %} {% include "votes/includes/film_card.html" with film=film only %} {% else %}

No upcoming film. {% endif %}

Register

    {% for user in present_users %}
  1. ✓ {{ user.username }} {% endfor %}
    {% for user in absent_users %}
  1. ✗ {{ user.username }} {% endfor %}
    {% for user in unknown_users %}
  1. ? {{ user.username }} {% endfor %}
{% elif event %}

You must update the calender in order to see the what the upcoming film might be. {% endif %} {% endblock %}