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

{{ poll.question }}

{% if poll.description %}

{{ poll.description }}

{% endif %}

by {{ poll.creator.username }} on {{ poll.created_at.strftime('%Y-%m-%d') }} {% if not poll.is_active %}closed{% endif %}

{% if poll.is_active %}
{% for opt in options %} {% set pct = (opt.vote_count * 100 / total) | round(1) %}
{{ opt.vote_count }} ({{ pct }}%)
{% endfor %}
{% else %} {% for opt in options %} {% set pct = (opt.vote_count * 100 / total) | round(1) %}
{{ opt.text }} — {{ opt.vote_count }} ({{ pct }}%)
{% endfor %} {% endif %}
← All polls {% if poll.is_active and (current_user.is_admin or poll.creator_id == current_user.id) %}
{% endif %}
{% endblock %}