Re: Form validation and template errors - need n00b help

2010-07-14 Thread reduxdj
Great, Tom I looked a the django book carefully and did the following: return render_to_response('listing.html', {'form':form,'error': True}) and works... thanks for responding as well On Jul 14, 7:37 am, Tom Evans wrote: > On Tue, Jul 13, 2010 at 4:06 PM, reduxdj

Re: Form validation and template errors - need n00b help

2010-07-14 Thread Tom Evans
On Tue, Jul 13, 2010 at 4:06 PM, reduxdj wrote: > HI, > > Forgive me, here's another n00b doozie. I've created a form, which > extends form, however, my form is not validating and I can't get the > form to print errors next to my form fields. What's curious, at the >

Form validation and template errors - need n00b help

2010-07-13 Thread reduxdj
HI, Forgive me, here's another n00b doozie. I've created a form, which extends form, however, my form is not validating and I can't get the form to print errors next to my form fields. What's curious, at the form.is_valid() in all the examples, I don't see an else: clause. Which leads me to