{% from "_formhelpers.html" import render_radio_field_in_row, render_field_data_in_row %} {% extends "base.html" %} {% block body %} {% if nextaction == 'vote' %} {% include "_claim_badge_page.html" %} {% endif %}

{{election.shortdesc}}

{{election.description}}

[More Information]

Here are the candidates for the {{ election.seats_elected }} seat(s) open:

{% for field in form if field.widget.input_type != 'hidden' %} {% if field.type == "BooleanField" %}
{{field}} {{field.label}}
{% elif election.voting_type == "irc"%}
{{ field.label }} {{ field(class_="c-select pull-xs-right") }}
{% else %} {% for subfield in field %}
{{ subfield }} {{ subfield.label }}
{% endfor %} {% endif %} {% endfor %}
{% if g.fas_user %}

{% if nextaction == 'vote' %} {% else %} {% endif %}

{{ form.csrf_token }} {% endif %}
{% if election.legal_voters.count() != 0 %}

To vote in this election you must be a member of any one of the following groups:

{% endif %} {% endblock %}