Re: Form that updates a list of items?

2009-11-03 Thread Julien Petitperrin
On Mon, Nov 2, 2009 at 5:28 PM, Nick Arnett wrote: > > > On Mon, Nov 2, 2009 at 3:30 AM, Julien Petitperrin < > julien.petitper...@gmail.com> wrote: > >> Hello, >> >> I had this kind of issue a few days ago. I found this: >> >> >>

Re: Form that updates a list of items?

2009-11-02 Thread Nick Arnett
On Mon, Nov 2, 2009 at 3:30 AM, Julien Petitperrin < julien.petitper...@gmail.com> wrote: > Hello, > > I had this kind of issue a few days ago. I found this: > > > http://collingrady.wordpress.com/2008/02/18/editing-multiple-objects-in-django-with-newforms/ > > I hope this helps you to find a way

Re: Form that updates a list of items?

2009-11-02 Thread Mark (Nosrednakram)
Hello, I'm not sure if I understand your problem but if I do you could name your fields the same in both tables, which I believe you may have done. Then your view could generate your input form using form = RoleUpDataFrom() and if you have POST data you could use form =

Re: Form that updates a list of items?

2009-11-02 Thread Julien Petitperrin
Hello, I had this kind of issue a few days ago. I found this: http://collingrady.wordpress.com/2008/02/18/editing-multiple-objects-in-django-with-newforms/ I hope this helps you to find a way to do your multiple items edit form. Have a nice day, Julien.

Form that updates a list of items?

2009-10-31 Thread Nick Arnett
I'm just getting familiar with Django and I think I've got all the basics... and I have lots of experience with Python and MySQL, but I'm having a hard time figuring out how to do something that would be easy for me in plain Python. One of the problems I keep finding with various pieces of