Files
notifications-admin/app/templates/views/service-settings/sms-prefix.html
T

23 lines
656 B
HTML
Raw Normal View History

2017-11-03 15:01:41 +00:00
{% extends "withnav_template.html" %}
{% from "components/radios.html" import radios %}
{% from "components/page-footer.html" import page_footer %}
2018-09-19 12:39:36 +01:00
{% from "components/form.html" import form_wrapper %}
2017-11-03 15:01:41 +00:00
{% block service_page_title %}
2017-11-06 14:12:25 +00:00
Text messages start with service name
2017-11-03 15:01:41 +00:00
{% endblock %}
{% block maincolumn_content %}
2017-11-06 14:12:25 +00:00
<h1 class="heading-large">Text messages start with service name</h1>
2018-09-19 12:39:36 +01:00
{% call form_wrapper() %}
2017-11-03 15:01:41 +00:00
{{ radios(form.enabled) }}
{{ page_footer(
button_text="Save",
back_link=url_for('.service_settings', service_id=current_service.id),
back_link_text='Back to settings'
) }}
2018-09-19 12:39:36 +01:00
{% endcall %}
2017-11-03 15:01:41 +00:00
{% endblock %}