{% extends 'base.html' %} {% block content %}

{{ poll['title'] }}

{{ poll['title'] }}
{% if not voted %}
{% for option in poll['options'] %}
{% endfor %}
{% else %}

You have already voted in this poll!

{% endif %}

Results

{% for option, votes in poll['votes'].items() %}
{{ option }}

{{ votes }} votes

{% endfor %}
{% endblock %}