{% extends "public/content.html" %} {% load election_extras %} {% block headtitle %} {{ election.name }} {% endblock %} {% block headscript %} {% endblock %} {% block title %}

{{ election.name }}

{% endblock %} {% block content %} {{ election.voting_introduction|safe }}
{% csrf_token %} {% if positions %} {% for position in positions %} {% if position.get_approved_candidates %}

{{ position.name }}

{% if position in votable_positions %} {% if position.num_votes > 1 %}

You may vote for {{ position.num_votes }} candidates for this position.

{% endif %}
{% for candidate in position.get_approved_candidates %}
{% if position.num_votes > 1 %} {% else %} {% endif %}

{{ candidate.manifesto|truncatewords:25 }} View More
{% endfor %}
{% else %}

Sorry, you have already voted for this position.

{% endif %} {% endif %} {% endfor %} {% if votable_positions %}
{% endif %} {% else %}

Sorry, there are no positions you can vote for.

{% endif %}
{% endblock %}