{% extends "layout.html" %} {% block body %} {% if not form.can_submit %}
{{ form.message }}
{% endif %} {% if valid_for != 'Never' %}
Voting ends at: {{ valid_for }}
{% endif %}
{% include "questions.html" %}

{% if form.can_submit %}

{% if form.vote_style == 'closed' %}
You can only vote once!
{% endif %} {% else %}
{{ form.message }}
{% endif %}

{% endblock %}