{% extends "base.html" %} {% load markup %} {% load i18n %} {% block fullscript %} {{ form_new_choice.media }} {% endblock %} {% block content %} {% if not choices %}

{% blocktrans %}As long as no options were added to the poll, it will not be available.{% endblocktrans %}

{% else %}

{% trans "Complete/Finalise the poll" %}

{% endif %} {% include 'editChoices.html' %} {% if choices %}

{% trans "Available choices" %}

{%if not poll.dated_choices%}{%endif%} {% for choice in choices %} {{choice.form.poll}}{{choice.form.order}} {%if not poll.dated_choices%}{%endif%} {% endfor %}
{% trans "Up/down" %}{% trans "Label" %} {% trans "Limit" %} {% trans "Delete?"%}
+ / -{{choice.form.name}} {% trans "Limited to"%} {{choice.form.limit}} {% trans "vote(s)" %}
{% endif %} {% endblock %}