
also explicitly set "native value" for all configuration checkbox fields, since apparently it will send `'false'` by default...
23 lines
543 B
Mako
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()}
|
|
|