equal
deleted
inserted
replaced
237 """base class for forms. Apply by default according to request form |
237 """base class for forms. Apply by default according to request form |
238 parameters specified using the `form_params` class attribute which |
238 parameters specified using the `form_params` class attribute which |
239 should list necessary parameters in the form to be accepted. |
239 should list necessary parameters in the form to be accepted. |
240 """ |
240 """ |
241 __registerer__ = accepts_registerer |
241 __registerer__ = accepts_registerer |
242 __select__ = classmethod(match_form_params) |
242 __select__ = match_form_params() |
243 |
|
244 form_params = () |
|
245 |
243 |
246 class EntityForm(FormMixIn, EntityView): |
244 class EntityForm(FormMixIn, EntityView): |
247 """base class for forms applying on an entity (i.e. uniform result set) |
245 """base class for forms applying on an entity (i.e. uniform result set) |
248 """ |
246 """ |
249 |
247 |