Closed PetrDlouhy closed 5 years ago
The usage for WithInlinesView
s is even more tricky. I wouldn't have a chance to guess it without the example in tests:
{{ form }}
{% for formset in inlines %}
{{ formset }}
{% endfor %}
Addressed in #178.
I spent few hour figuring out, why inline formsets doesn't work. The cause was that I used
{{ form }}
instead of{{ formset }}
in template. I didn't find any mention about this in the docs. This is worth of describing somewhere.