tailbone/tailbone/templates/settings/email/configure.mako
Lance Edgar dc28b1337d Add config for supported vendor catalog parsers
also explicitly set "native value" for all configuration checkbox
fields, since apparently it will send `'false'` by default...
2022-01-08 13:35:59 -06:00

23 lines
543 B
Mako

## -*- coding: utf-8; -*-
<%inherit file="/configure.mako" />
<%def name="form_content()">
<h3 class="block is-size-3">Sending</h3>
<div class="block" style="padding-left: 2rem;">
<b-field>
<b-checkbox name="rattail.mail.record_attempts"
v-model="simpleSettings['rattail.mail.record_attempts']"
native-value="true"
@input="settingsNeedSaved = true">
Make record of all attempts to send email
</b-checkbox>
</b-field>
</div>
</%def>
${parent.body()}