{% extends "base.html" %} {% block title %}Vote: {{ poll.question }}{% endblock %} {% block head %} {% endblock %} {% block content %}

{{ poll.question }}

Time remaining: --:--

{% if poll.hidden %} {% if token.is_moderator %}

Results are hidden until this poll ends. As a moderator, you can still see the real-time results.

{% else %}

Results are hidden until this poll ends.

{% endif %} {% else %}

Results are updated in real time.

{% endif %}
{% for option in poll.options %}
- (-%)
{% endfor %}
{% if poll.requires_auth and not token.is_authenticated %} {% elif not has_voted %} {% else %}

You have already voted in this poll.

{% endif %}
{% if token.is_moderator %}
Manage Poll

As a moderator, you can perform the following actions on this poll:

{% endif %} {% endblock %} {% block scripts %} {% endblock %}