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

As long as no options were added to the poll, it will not be made available.

{% endif %}

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

{% if error %}

{{ error }}

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