{% extends "bases/bootstrap-with-nav.html" %} {% load staticfiles %} {% load bootstrap3 %} {% block app_js_vars %} var option_count = {{ object.options.count }}; {% endblock %} {% block content %}

Poll: {{object.question_text}}

Poll {{ poll_num }} of {{ poll_count }} in Event: {{ object.event.title }}
{% if prev_index %} {% endif %} {% if next_index %} {% endif %}
Edit Poll {% if object.options.all %}

Options

{{ vote_count }} vote(s) have been cast

{% if can_vote %} {% if has_voted %}

You have already voted in this poll. Resubmitting the form will change your vote.

{% endif %}

Voting as {{ voter_email }} -- Do NOT share this url

{% load crispy_forms_tags %}
Options
{% crispy form %} {% csrf_token %}
{% else %} {% endif %} {% else %}

No options are available.

{% endif %}


POLL ENC {{ object.enc }} {% if form.errors %} {% for field in form %} {% for error in field.errors %}
{{ error|escape }}
{% endfor %} {% endfor %} {% for error in form.non_field_errors %}
{{ error|escape }}
{% endfor %} {% endif %} {% endblock %}