{% 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 "Choice administration" %}

{% trans "After you've finished to add or edit choices for this poll, click on:" %}

{% endif %} {% include 'editChoices.html' %} {% if choices %}
{% trans "Edit available choices" %}
{%if not poll.dated_choices%}{%endif%} {% for choice in choices %} {% csrf_token %} {{choice.form.poll}}{{choice.form.order}} {%if not poll.dated_choices%} {%endif%} {% endfor %}
{% trans "Position" %}{% trans "Value" %} {% trans "Max votes" %} {% trans "Delete?"%} ?

{{choice.form.name}} {{choice.form.limit}}
{% endif %} {% endblock %}