[mezzanine-users] Form validation in Page Processors

2014-03-04 Thread Danny flack
Is it possible to validate a form in a page processor? I know you're able to override the associated form by something like: *@processor_for('rsvp')* *def rsvp_form(request, page): * *form = RsvpForm() # a custom form i created to override the page's form* *return {form: form}* But

Re: [mezzanine-users] Form validation in Page Processors

2014-03-04 Thread Josh Cartmell
Hey Danny, Check out the example at https://mezzanine.jupo.org/docs/content-architecture.html#page-processors, I think it will get you started down the right path and shows how to handle validation in a processor. On Tue, Mar 4, 2014 at 9:37 AM, Danny flack flackatt...@gmail.com wrote: Is it