{% extends "constellation_base/base.html" %} {% block title %}{{ template_settings.organization }} -- Vote{% endblock %} {% block head %} {{ block.super }} {% load static %} {% endblock %} {% block js %}
{{ block.super }} {% load static %} {% load get_item %} {% endblock %} {% block content %}

{{ poll.title }}

{{ poll.desc }}

Candidates

{% for option in poll_options %}{% include "constellation_vote/ballotItem.html" %}{% endfor %}

Ballot

{% for option in selected_options %}{% include "constellation_vote/ballotItem.html" %}{% endfor %}

{% if can_cast %} {% endif %}
{% endblock %}