3
0
Fork 0
wuttaweb/tests/forms/main_template_with_fields.mako
Lance Edgar 49c001c9ad feat: overhaul how form vue template is rendered
now a page template can add `<%def name="form_vue_fields()">` and the
form should inspect/discover and use that instead of its default
2025-12-28 15:16:27 -06:00

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>