{% extends "cciw/standard.html" %} {% block content %} {% if existing_poll %}

Edit the poll details below. Please note that you shouldn't remove or re-order the poll options (but it is OK to insert additions at any position).

{% else %}

Enter the poll details below. A new topic will be created for this poll.

{% endif %} {% if errors %}
Please check your input:
{% endif %}
{{ form.title }} {% if form.title.errors %}{{ form.title.errors|join:", " }}{% endif %}
{{ form.intro_text }} {% if form.intro_text.errors %}{{ form.intro_text.errors|join:", " }}{% endif %}
{% if errors.polloptions %}{{ errors.polloptions }}{% endif %}
{{ form.outro_text }} {% if form.outro_text.errors %}{{ form.outro_text.errors|join:", " }}{% endif %}
{{ form.voting_starts_date }} {% if form.voting_starts_date.errors %}{{ form.voting_starts_date.errors|join:", " }}{% endif %}
{{ form.voting_starts_time }} {% if form.voting_starts_time.errors %}{{ form.voting_starts_time.errors|join:", " }}{% endif %}
{{ form.voting_ends_date }} {% if form.voting_ends_date.errors %}{{ form.voting_ends_date.errors|join:", " }}{% endif %}
{{ form.voting_ends_time }} {% if form.voting_ends_time.errors %}{{ form.voting_ends_time.errors|join:", " }}{% endif %}
{{ form.rules }} {% if form.rules.errors %}{{ form.rules.errors|join:", " }}{% endif %}
{{ form.rule_parameter }} {% if form.rule_parameter.errors %}{{ form.rule_parameter.errors|join:", " }}{% endif %}
{% endblock %}