Re: clear a newforms error indicator

2008-11-24 Thread Malcolm Tredinnick
Hi Robin, On Mon, 2008-11-24 at 12:45 +, Robin Becker wrote: > We have some legacy code that wants to display a partially filled form. One > of > the fields is required to be non-empty (it's a captcha) so when re-issuing > the > form partially filled I've been doing this > > class EmailF

clear a newforms error indicator

2008-11-24 Thread Robin Becker
We have some legacy code that wants to display a partially filled form. One of the fields is required to be non-empty (it's a captcha) so when re-issuing the form partially filled I've been doing this class EmailForm(forms.Form): . vericode = forms.CharField(max_length=5, required=True