mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-16 20:49:00 -04:00
There may be exceptions to the rule, so we should have a way of overriding this manually.
22 lines
554 B
HTML
22 lines
554 B
HTML
{% extends "withnav_template.html" %}
|
|
{% from "components/textbox.html" import textbox %}
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
|
|
{% block service_page_title %}
|
|
Emails
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<form method="post">
|
|
<h1 class="heading-large">Free text message allowance</h1>
|
|
{{ textbox(form.free_sms_allowance) }}
|
|
{{ page_footer(
|
|
'Save',
|
|
back_link=url_for('.service_settings', service_id=current_service.id),
|
|
back_link_text='Back to settings'
|
|
) }}
|
|
</form>
|
|
|
|
{% endblock %}
|