Re: newforms and views.generic.create_update.create_object

2008-06-26 Thread Brian Rosner
On Jun 26, 2008, at 1:23 PM, timc3 wrote: > > Might be a stupid question but how did you apply the patch? Get inside your Django directory and execute:: patch -p0 < the_path.diff That should get it going. Let me know if you have any more questions. Brian Rosner http://oebfare.com --~--~-

Re: newforms and views.generic.create_update.create_object

2008-06-26 Thread timc3
Might be a stupid question but how did you apply the patch? On May 12, 5:06 pm, Wes Winham <[EMAIL PROTECTED]> wrote: > I've been using Brian Rosner's patch from that ticket, and it's been > working great for me. I haven't ran in to any bugs so far and it's cut > my view code down by several line

Re: newforms and views.generic.create_update.create_object

2008-05-12 Thread Wes Winham
I've been using Brian Rosner's patch from that ticket, and it's been working great for me. I haven't ran in to any bugs so far and it's cut my view code down by several lines each view in some places and completely eliminated view code in many others. Gotta love newforms and modelforms :) I might

Re: newforms and views.generic.create_update.create_object

2008-05-11 Thread M.Ganesh
Karen Tracey wrote: > On Sun, May 11, 2008 at 5:55 AM, M.Ganesh <[EMAIL PROTECTED] > > wrote: > > > Hi all > > I am a django rookie. > > Is it true that "views.generic.create_update.create_object" generate a > oldform? (the documentation says so!) > > >

Re: newforms and views.generic.create_update.create_object

2008-05-11 Thread Karen Tracey
On Sun, May 11, 2008 at 5:55 AM, M.Ganesh <[EMAIL PROTECTED]> wrote: > > Hi all > > I am a django rookie. > > Is it true that "views.generic.create_update.create_object" generate a > oldform? (the documentation says so!) > The docs are generally accurate. Searching the in the ticket tracker for

newforms and views.generic.create_update.create_object

2008-05-11 Thread M.Ganesh
Hi all I am a django rookie. Is it true that "views.generic.create_update.create_object" generate a oldform? (the documentation says so!) I have a template which renders a newform created with 'forms.Modelform' to my satisfaction. However when I try to use the same template in create_object