> On a related note, is it possible to make the form silently fail if this 
> one field does not pass validation but other fields will still properly 
> produce error message if they fail validation?
>

Something like:

if form.process().accepted:
    [success action]
elif form.errors.secret_field:
    print 'bad robot'
elif form.errors:
    [normal error action]

Anthony

-- 



Reply via email to