now a page template can add `<%def name="form_vue_fields()">` and the form should inspect/discover and use that instead of its default
11 lines
227 B
Mako
11 lines
227 B
Mako
## -*- coding: utf-8; -*-
|
|
<%inherit file="/form.mako" />
|
|
|
|
<%def name="form_vue_fields()">
|
|
|
|
SOMETHING CRAZY
|
|
|
|
<b-field label="name">
|
|
<b-input name="name" v-model="${form.get_field_vmodel('name')}" />
|
|
</b-field>
|
|
</%def>
|
|
|