I'd like to know if there's a way to reference the individual forms of a formset in Django without using a for loop.
This is what all the docs search results point to:
{% for form in formset %}
{{ form }}
{% endfor %}
I'd like to know if there's anyway to do this:
{{ form[0] }}
{{ form[1] }}
{{ form[2] }}
I can't find anything that does it and beginning to think it's not possible.