Re: Django forms usage with mutliple rows

2009-01-06 Thread Jeff FW
Yup, that's exactly what formsets are for. You essentially take the form you've already written, and pass it to formset_factory() to create a list of identical forms. http://docs.djangoproject.com/en/dev/topics/forms/formsets/#topics-forms-formsets -Jeff On Jan 6, 1:02 am, "Kottiyath Nair"

Django forms usage with mutliple rows

2009-01-05 Thread Kottiyath Nair
Hi, Since I am a newbie in HTML and Django, there might be a completely different way to do this. If somebody can point that also, it would be helpful. I want to send multiple rows of data from a datagrid to a django server. Currently, I am doing it in a single form inside a page