#27934: modelformset_factory ignores max_num and returns 15 forms
-----------------------------------------+------------------------
Reporter: Marc | Owner: nobody
Type: Bug | Status: new
Component: Uncategorized | Version: 1.11
Severity: Normal | Keywords:
Triage Stage: Unreviewed | Has patch: 0
Needs documentation: 0 | Needs tests: 0
Patch needs improvement: 0 | Easy pickings: 0
UI/UX: 0 |
-----------------------------------------+------------------------
modelformset_factory(MyModel, form=MyModelForm, max_num=4)
I have tried an array of options, but still it always returns 15 forms
inside a template
return render(request, 'form.html', {"forms": forms})
template has simple
{% for form in forms %}
and will iterate through 15, always, regardless of the settings I put in
above.
--
Ticket URL: <https://code.djangoproject.com/ticket/27934>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.