Django
Formsets
Buscar..
Sintaxis
- NewFormSet = formset_factory (SomeForm, extra = 2)
- formset = NewFormSet (initial = [{'some_field': 'Field Value', 'other_field': 'Other Field Value',}])
Formsets con datos inicializados y unificados.
Formset
es una forma de representar múltiples formularios en una página, como una cuadrícula de datos. Ej .: Este ChoiceForm
podría estar asociado con alguna pregunta de ordenación. Como, los niños son los más inteligentes entre qué edad ?.
appname/forms.py
from django import forms
class ChoiceForm(forms.Form):
choice = forms.CharField()
pub_date = forms.DateField()
En sus vistas, puede usar el constructor formset_factory
que toma Form
como parámetro su ChoiceForm
en este caso y extra
que describe cuántas formas adicionales distintas de las formas inicializadas deben procesarse, y puede recorrer el objeto formset
como cualquier otro. otro iterable.
Si el formset no se inicializa con datos, imprime el número de formularios igual a extra + 1
y si el formset se inicializa se imprime initialized + extra
donde hay extra
número extra
de formularios vacíos distintos de los inicializados.
appname/views.py
import datetime
from django.forms import formset_factory
from appname.forms import ChoiceForm
ChoiceFormSet = formset_factory(ChoiceForm, extra=2)
formset = ChoiceFormSet(initial=[
{'choice': 'Between 5-15 ?',
'pub_date': datetime.date.today(),}
])
si hace un bucle sobre el formset object
como este para form in formset: print (form.as_table ())
Output in rendered template
<tr>
<th><label for="id_form-0-choice">Choice:</label></th>
<td><input type="text" name="form-0-choice" value="Between 5-15 ?" id="id_form-0-choice" /></td>
</tr>
<tr>
<th><label for="id_form-0-pub_date">Pub date:</label></th>
<td><input type="text" name="form-0-pub_date" value="2008-05-12" id="id_form-0-pub_date" /></td>
</tr>
<tr>
<th><label for="id_form-1-choice">Choice:</label></th>
<td><input type="text" name="form-1-choice" id="id_form-1-choice" /></td>
</tr>
<tr>
<th><label for="id_form-1-pub_date">Pub date:</label></th>
<td><input type="text" name="form-1-pub_date" id="id_form-1-pub_date" /></td
</tr>
<tr>
<th><label for="id_form-2-choice">Choice:</label></th>
<td><input type="text" name="form-2-choice" id="id_form-2-choice" /></td>
</tr>
<tr>
<th><label for="id_form-2-pub_date">Pub date:</label></th>
<td><input type="text" name="form-2-pub_date" id="id_form-2-pub_date" /></td>
</tr>