{% load i18n %} {{ poll_option_formset.management_form }} {% for form in poll_option_formset.forms %}
{% for field in form.visible_fields %}
{% if forloop.first %} {{ form.id }} {% endif %} {% if field.name == 'DELETE' %}
{% else %} {% include "partials/form_field.html" with field=field %} {% endif %}
{% endfor %}
{% endfor %}  {% trans "Add a poll option" %} {% if poll_option_formset.initial_form_count %}

{% blocktrans %}Note: Deleting poll options of an existing poll will delete the associated votes.{% endblocktrans %}
{% endif %}