
customer widget is either autocomplete or dropdown, per config also added a way to pass arbitrary kwargs to the chameleon template rendering for a field also moved the logic for rendering a <b-field> out of the template and into the Form class also start to prefer `input_handler` over `input_callback` when specifying client-side JS hook
7 lines
265 B
Mako
7 lines
265 B
Mako
## -*- coding: utf-8; -*-
|
|
|
|
## TODO: deprecate / remove this
|
|
## (tried to add deprecation warning here but it didn't seem to work)
|
|
<%def name="render_buefy_field(field, bfield_kwargs={})">
|
|
${form.render_buefy_field(field.name, bfield_attrs=bfield_kwargs)}
|
|
</%def>
|
|
|