I try to add initial values to the empty form of a modelformset_factory.

FormSet = modelformset_factory(MyModel, extra=2)
formset = FormSet(queryset=MyModel.objects.none(), initial=[{'foo': 'bar'}, {'foo': 'bar'}])

I would like to set initial value to the formset.empty_form , how can I achieve this ?

link|improve this question

25% accept rate
Sorry, the question doesn't really make sense. What is wrong with the code you have posted? Do you get an error - if so, what? Does it not have the desired effect - if so, what is the desired effect and what actually happens? – Daniel Roseman Jul 9 '10 at 13:44
1  
You are right, my code works fine, but I would like a way to set initial value, not to my 2 extra forms (like in my example), but to the empty_form (in formset.empty_form) – sam Jul 9 '10 at 13:52
feedback

1 Answer

You can add initial values to your formset as clearly stated in this other answer. Then you're able to set the empty_form in the template such as:

<form action="/contact/" method="post">{% csrf_token %}
   {% with formset.empty_form as form %}
      {% for field in form %}
         <div class="fieldWrapper">
            {{ field.errors }}
            {{ field.label_tag }}: {{ field }}
         </div>
      {% endfor %}
   {% endwith %}
   <input type="submit" value="Submit" />
</form>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.