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

Polls

Vote in active polls or create your own.

New Poll
Active
{% if active %} {% for p in active %} {% endfor %}
QuestionByVotesCreated
{{ p.question }} {{ p.creator.username }} {{ p.options.count() }} options {{ p.created_at.strftime('%Y-%m-%d') }}
{% else %}
No active polls.
{% endif %}
{% if closed %}
Recently Closed
{% for p in closed %} {% endfor %}
QuestionByClosed
{{ p.question }} {{ p.creator.username }} {{ p.closes_at.strftime('%Y-%m-%d') if p.closes_at else '—' }}
{% endif %} {% endblock %}