Add missing <form> on letters setting page

Pressing the big green button does nothing unless there’s a form on the
page.
This commit is contained in:
Chris Hill-Scott
2018-01-24 14:19:37 +00:00
parent f27fae99f4
commit 9c02cf7f32

View File

@@ -18,12 +18,14 @@
See <a href="{{ url_for(".pricing", _anchor="letters") }}">pricing</a> for the list
of rates.
</p>
{{ radios(form.enabled) }}
{{ page_footer(
'Save',
back_link=url_for('.service_settings', service_id=current_service.id),
back_link_text='Back to settings'
) }}
<form method="post">
{{ radios(form.enabled) }}
{{ page_footer(
'Save',
back_link=url_for('.service_settings', service_id=current_service.id),
back_link_text='Back to settings'
) }}
</form>
</div>
</div>