> > form=crud.create(db.comments) > if form.process().accepted: >
Crud and form.process() do not go together. Crud is a higher level interface and automatically handles form processing. Once you call crud.create(), the form is already processed -- processing it the second time will not work (the formkey token used to protect against CSRF attacks and double submission is only good for one submission). Anthony --

