Re: I think I will need some more help concerning forms in django

2010-04-26 Thread Shawn Milochik
It sounds like a case for formsets. http://docs.djangoproject.com/en/1.1/topics/forms/formsets/ Assuming you have models for these shopping cart items, you can use a formset of those items. Shawn -- You received this message because you are subscribed to the Google Groups "Django users" grou

I think I will need some more help concerning forms in django

2010-04-26 Thread xpanta
Hi, I am trying hard to understand how the forms work. It seems for me easier to create an html form with some hidden fields during runtime. and then parse them one-by-one by request.POST.keys() when the view is called. I understand, however, that django forms have great importance in building we