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

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

{% endif %}

{% if new %}{% trans "New poll" %}{% else %}{% trans "Edit poll" %}{% endif %}

{% if error %}

{{ error }}

{% endif %}
{% if not new %} {% endif %} {% if not new %}{% if choices %} {% for choice in choices %} {% endfor %}{% endif %} {% endif %}
http://{{full_base_url}} {% trans "Copy this address and send it to voters who want to participate to this poll" %}
http://{{full_admin_url}} {% trans "Address to modify the current poll" %}
{% if new %}{% else %}{{author_name}}{% endif %} {% trans "Name, firstname or nickname of the author" %}
{% if new %}{% else %}{{poll_name}}{% endif %} {% trans "Global name to present the poll" %}
{% if new %}{% else %}{{poll_desc}}{% endif %} {% trans "Precise description of the poll" %}
{% trans "Choices" %} {% trans "Delete?"%}
 {{choice.name}}
{% if new %} {% else %} {% endif %}
{% endblock %}