tailbone/tailbone/templates/reports/generated/configure.mako
Lance Edgar 30f95e2f08 Add common configuration logic for "input file templates"
just used in one batch so far but should be useful for many more..once
can get around to migrating them

had to rework the configuration logic to use HTML form instead of
JSON, to allow for the file uploads
2021-12-17 20:25:17 -06:00

22 lines
597 B
Mako

## -*- coding: utf-8; -*-
<%inherit file="/configure.mako" />
<%def name="form_content()">
<h3 class="block is-size-3">Generating</h3>
<div class="block" style="padding-left: 2rem;">
<b-field message="If not set, reports are shown as simple list of hyperlinks.">
<b-checkbox name="tailbone.reporting.choosing_uses_form"
v-model="simpleSettings['tailbone.reporting.choosing_uses_form']"
@input="settingsNeedSaved = true">
Show report chooser as form, with dropdown
</b-checkbox>
</b-field>
</div>
</%def>
${parent.body()}