{% extends "bases/bootstrap-with-nav.html" %} {% load staticfiles %} {% load bootstrap3 %} {% block app_js_vars %} const OPTION_COUNT = {{ object.options.count }}; const MIN_SELECTIONS = {{ min_selection }}; const MAX_SELECTIONS = {{ max_selection }}; const POLL_COUNT = {{ poll_count }}; const POLL_NUM = {{ poll_num }}; var selectedCount = 0; {% endblock %} {% block content %}
{% if can_vote %} {% csrf_token %}

Event Voting Page for the Event '{{ object.event.title }}'


Voting status: {% if has_voted %} Voted - Re-submitting will change your vote {% else %} Not Voted {% endif %}

Instructions: You will be shown each poll for this event one by one where you will need to make a selection for the current poll before moving onto the next poll. For this specific poll you need to make a minimum of {{ min_selection }} option selection(s) and a maximum of {{ max_selection }}. {% if min_selection == 0 %}

Due to the fact that you are permitted to select nothing, simply hitting submit will submit a 'blank' vote so please be aware of this. You can always re-visit this page before the event ends if you change your mind. {% endif %}

Please make your choice below.

Poll {{ poll_num }} of {{ poll_count }}: {{object.question_text}}


{% load crispy_forms_tags %}
Options
{% for option in object.options.all %}
{% load custom_filters_tags %}
{% endfor %}
{% if prev_uuid %} Previous Poll {% endif %} {% if next_uuid %} Next Poll {% endif %}
{% else %} {% endif %}
{% endblock %}