1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #27679 -- Doc'd that empty formsets display extra + min_num forms.

This commit is contained in:
David Smith
2020-08-18 21:56:39 +01:00
committed by GitHub
parent 35b03788b0
commit e2e34f4de3

View File

@@ -415,6 +415,11 @@ deletion, is greater than or equal to ``min_num``.
>>> formset.non_form_errors()
['Please submit 3 or more forms.']
.. note::
Regardless of ``validate_min``, if a formset contains no data, then
``extra + min_num`` empty forms will be displayed.
Dealing with ordering and deletion of forms
===========================================