Re: Newbie Forms Question

2008-10-11 Thread Russell Keith-Magee
On Sat, Oct 11, 2008 at 8:05 PM, d. <[EMAIL PROTECTED]> wrote: > > Probably a simple, stupid error I'm making: > > I try to display a form in a template using: > > > {{ rForm.as_table }} > > > > > The browser displays pure html of the form content, having the form- > source all escaped to

Newbie Forms Question

2008-10-11 Thread d.
Sorry, I first posted this on the django developppers group, which was obviously wrong. Probably a simple, stupid error I'm making: I try to display a form in a template using: {{ rForm.as_table }} The browser displays pure html of the form content, having the form- source all escaped to

Newbie forms question:

2007-10-26 Thread schlam
so I am using the code from the Django documentation to processes information from a form with the code : def edit_place(request, place_id): try: manipulator = Place.ChangeManipulator(place_id) place = manipulator.original_object if request.method == 'POST':