Adding a button in z3c.form crud

This should work

class SimpeEditForm(crud.EditForm):
    buttons = crud.EditForm.buttons.copy()
    handlers = crud.EditForm.handlers.copy()
2 Likes