{% extends "base.html" %} {% block title %}Polls{% endblock %} {% block content %}
Vote in active polls or create your own.
| Question | By | Votes | Created |
|---|---|---|---|
| {{ p.question }} | {{ p.creator.username }} | {{ p.options.count() }} options | {{ p.created_at.strftime('%Y-%m-%d') }} |
| Question | By | Closed |
|---|---|---|
| {{ p.question }} | {{ p.creator.username }} | {{ p.closes_at.strftime('%Y-%m-%d') if p.closes_at else '—' }} |