{% extends "base.html" %} {% load markup %} {% load i18n %} {% load adminmedia %} {% block title %}Papillon - {% trans "Edit poll" %} - {{poll.name}}{% endblock %} {% block fullscript %} {{ form.media }} {% endblock %} {% block content %}

{% trans "Edit poll" %}

{% for field in form %} {% if field.is_hidden %} {{field}} {% else %} {% if field.help_text %}{%endif%} {% endif %} {% endfor %}
{{ base_url }}

{% trans "Copy this address and send it to voters who want to participate to this poll" %}

{{ edit_url }}

{% trans "Address to modify the current poll" %}

{{choices_url }}

{% trans "Address to modify choices of the current poll." %}

{{field.errors}}
{{field.label_tag}} {{field}}{{field.help_text|markdown}}
{% endblock %}