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

Create Poll

{% if error %} {% endif %}
{% for opt in form.options %}
{{ loop.index }} {% if loop.index > 2 %} {% endif %}
{% endfor %}
Vote counts stay hidden from voters until the poll ends.
Only viewers with an authenticated Owncast account can vote.
Voters can select more than one option.
Voters must select between and options.
{% endblock %} {% block scripts %} {% endblock %}