mirror of
				https://github.com/django/django.git
				synced 2025-10-28 16:16:12 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			598 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			598 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| ====================
 | |
| Formset Functions
 | |
| ====================
 | |
| 
 | |
| .. 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.6
 | |
| 
 | |
|     The ``validate_max`` parameter was added.
 | |
| 
 | |
|     .. versionchanged:: 1.7
 | |
| 
 | |
|     The ``min_num`` and ``validate_min`` parameters were added.
 |