summaryrefslogtreecommitdiff
path: root/docs/ref/forms/formsets.txt
blob: c6822f5a001525d778435bf1e1560c0ded6fbb59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
=================
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)

    Returns a ``FormSet`` class for the given ``form`` class.

    See :ref:`formsets` for example usage.

    .. versionchanged:: 1.6
    
    The ``validate_max`` parameter was added.