{% extends "base.html" %} {% load l10n %} {% load i18n %} {% block title %} Vote in the {{ election.name }} - {{ CONVENTION_NAME }} {% endblock title %} {% block content %}
{% block email-control %} {# This block is for the mobile interfaces; it only shows in small viewports #}
{% csrf_token %}
{# This block is for the web interface; it only shows in larger viewports #}
{% csrf_token %}
{% endblock email-control %}
{% block instructions %} {% include "nominate/bits/voting_instructions.html" with closing_date=election.voting_info.close_date %} {% endblock instructions %}
{% block form %} {% include "nominate/voting_ballot_form.html" %} {% endblock form %}
{% include "nominate/bits/voting_disclaimers.html" %}
{% endblock %}