I noticed that when I pass a initial value to my model formset(lines 100-102), I am unable to POST the values of item from the 2nd formset onwards.

By unable I mean that value of that field doesn't show up in my request.POST and my formset doesnt get saved because it's a required field.

When I remove the lines100-102, and submit the form normally, it works ok.

What's wrong with those lines?

View

 78 def registrant_details(request, event_slug, cart_id):
 79     '''
 80     Fill in user details for each item
 81     '''
 82     # check quantity between CartItem model and ItemUserDetails 
 83     event = get_object_or_404(Event, slug=event_slug)
 84     cart = get_object_or_404(Cart, id=cart_id)
 85     cart_items = CartItem.objects.filter(cart=cart)
 86 
 87     max_num = [cart_item.quantity for cart_item in cart_items]
 88 
 89     ItemUserDetailsFormset = modelformset_factory(ItemUserDetails, max_num=sum(max_num), extra=sum(max_num), exclude=['cart'])
 90 
 91     if request.method == 'POST':
 92         formset = ItemUserDetailsFormset(request.POST)
 93         if formset.is_valid():
 94             formset.save()
 95             url = reverse('event_tickets_summary', args=[event_slug, cart_id])
 96             return redirect(url)
 97             
 98     else:
 99         initial =[]
100         for item in cart_items:
101             for i in range(1, item.quantity+1):
102                 initial.append({'item':item.item})
103         formset = ItemUserDetailsFormset(initial=initial)
104         
105     template = 'payments/user_details.html'
106     template_vars = {'event':event, 
107                      'cart': cart, 
108                      'formset': formset}
109     return render(request, template, template_vars)
link|improve this question

There are also reports of bugs on older django where initial is not supported on modelformsets. Which django are you using? Also you generally want to pass in a queryset to a modelformset. You should be getting a formset for all ItemUserDetail objects + the initials – Yuji Tomita Nov 4 '11 at 20:19
Hey Yuji, I'm using the development version of Django. – super9 Nov 5 '11 at 6:33
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.