{% extends 'application/base_application.html' %} {% load i18n %} {% load staticfiles %} {% block title %}{{ block.super }} - {{ poll }}{% endblock %} {% block content %}

{%trans "Application No." %} {{ application.number }} - {%trans "Vote" %}

{{ application.title }}

{%trans "Results of" %} {{ ballot }}. {%trans "Vote" %}

{% trans "Special values" %}: -1 = {% trans 'majority' %}; -2 = {% trans 'undocumented' %}
{% csrf_token %} {{ pre_form }} {% for value in forms.0 %} {% endfor %}
{% trans "Option" %} {% trans "Votes" %}
{{ value.label }} {{ value.errors }}{{ value }}
{% trans "Invalid votes" %} {{ pollform.votesinvalid.errors }}{{ pollform.votesinvalid }}
{% trans "Votes cast" %} {{ pollform.votescast.errors }}{{ pollform.votescast }}
{{ post_form }}

{% endblock %}