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

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

{% endif %}

{% trans "Edit poll" %}

{% for field in form %} {% if field.is_hidden %} {{field}} {% else %} {% if field.help_text %}{%endif%} {% endif %} {% endfor %}
http://{{root_url}}edit/{{poll.base_url}} {% trans "Copy this address and send it to voters who want to participate to this poll" %}
http://{{root_url}}poll/{{poll.admin_url}} {% trans "Address to modify the current poll" %}
{{field.errors}}
{{field.label_tag}} {{field}}{{field.help_text|markdown}}

{% trans "Choices" %}

{% if choices %}
{% for choice in choices %}{% endfor %}
{% trans "Up/down" %}{% trans "Label" %}{% trans "Limit" %}{% trans "Delete?"%}
+ / -{% trans "Limited to"%} {% trans "vote(s)" %}
{% endif %}
{%trans "Limited to"%} {%trans "vote(s)"%}{% trans "Setting a new choice. Optionally you can set a limit of vote for this choice. This limit is usefull for limited resources allocation." %}
{% endblock %}