{% extends "bases/bootstrap-with-nav.html" %} {% load staticfiles %} {% load bootstrap3 %} {% block content %}
{% csrf_token %}
A short and clear name. {% if invalid_fields.event_name %}{{ invalid_fields.event_name.error }}{% endif %}
Used in the election URL, it must only consist of letters, numbers, underscores or hyphens; no whitespace is permitted. {% if invalid_fields.identifier %}{{ invalid_fields.identifier.error }}{% endif %}
/
Date and time when registered voters can commence voting. This includes the UTC offset starting with '+'. {% if invalid_fields.starts_at %}{{ invalid_fields.starts_at.error }}{% endif %}
/
Date and time when registered voters can no longer vote. This includes the UTC offset starting with '+'. {% if invalid_fields.ends_at %}{{ invalid_fields.ends_at.error }}{% endif %} {% if invalid_fields.event_timings %}{{ invalid_fields.event_timings.error }}{% endif %}
{% if invalid_fields %} {% for poll in invalid_fields.polls_data.val %} {% endfor %} {% else %} {% endif %}
# Question / Statement Actions
{{ forloop.counter }} {{ poll.name.val }}
Drag and drop to re-order polls. {% if invalid_fields.polls_errors %}{{ invalid_fields.polls_errors.error }}{% endif %}
{% if invalid_fields %} {% for organiser in invalid_fields.organiser_emails_data.val %} {% endfor %} {% else %} {% endif %}
# Email Actions
{{ forloop.counter }}
1
2
Drag and drop to re-order emails. {% if invalid_fields.organiser_emails %}{{ invalid_fields.organiser_emails.error }}{% endif %}
{% if invalid_fields %} {% for trustee in invalid_fields.trustee_emails_data.val %} {% endfor %} {% else %} {% endif %}
# Email Actions
{{ forloop.counter }}
1
2
Drag and drop to re-order emails. {% if invalid_fields.trustee_emails %}{{ invalid_fields.trustee_emails.error }}{% endif %}
Manually enter email addresses separated with commas. Alternatively, you can also upload a CSV file: {% if invalid_fields.voters_emails %}{{ invalid_fields.voters_emails.error }}{% endif %}
Tick the box to prove that you're not a robot. {% if invalid_fields.recaptcha %}{{ invalid_fields.recaptcha.error }}{% endif %}

{% endblock %}