1
0
mirror of https://github.com/django/django.git synced 2024-11-20 00:14:08 +00:00
django/docs/ref/forms/formsets.txt
Duane Hilton 054bdfeff1 Fixed #17638 -- Added crosslinks between topic and reference guides.
Thanks oinopion for the suggestion and jarus for the initial patch.
2014-09-29 18:06:31 -04:00

20 lines
633 B
Plaintext

=================
Formset Functions
=================
Formset API reference. For introductory material about formsets, see the
:doc:`/topics/forms/formsets` topic guide.
.. module:: django.forms.formsets
:synopsis: Django's functions for building formsets.
.. function:: formset_factory(form, formset=BaseFormSet, extra=1, can_order=False, can_delete=False, max_num=None, validate_max=False, min_num=None, validate_min=False)
Returns a ``FormSet`` class for the given ``form`` class.
See :ref:`formsets` for example usage.
.. versionchanged:: 1.7
The ``min_num`` and ``validate_min`` parameters were added.