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

43 lines
1.4 KiB
HTML
Raw Normal View History

2018-11-01 16:02:43 +00:00
2016-01-07 12:29:56 +00:00
{% extends "withnav_template.html" %}
2019-04-29 11:44:05 +01:00
{% from "components/page-header.html" import page_header %}
2016-01-07 20:11:22 +00:00
{% from "components/page-footer.html" import page_footer %}
2018-09-19 12:39:36 +01:00
{% from "components/form.html" import form_wrapper %}
2023-08-08 16:19:17 -04:00
{% from "components/us_components/back-link/macro.njk" import govukBackLink %}
2016-01-07 12:29:56 +00:00
2017-02-13 10:45:15 +00:00
{% block service_page_title %}
Change your service name
2016-01-07 12:29:56 +00:00
{% endblock %}
{% block backLink %}
{{ govukBackLink({ "href": url_for('main.service_settings', service_id=current_service.id) }) }}
{% endblock %}
2016-01-07 12:29:56 +00:00
{% block maincolumn_content %}
{{ page_header('Change your service name') }}
<p class="govuk-body">Your service name should tell users what the message is about as well as who its from.</p>
<p class="govuk-body">You should only use an acronym or initialism if your users are already familiar with it.</p>
<div>
{% if current_service.prefix_sms %}
<p class="govuk-body">Users will see your service name at the start of every text message</p>
{% else %}
<p class="govuk-body">Users will see your service name as your email sender name.</p>
{% endif %}
2016-01-07 16:24:43 +00:00
</div>
<p class="govuk-body">The service name you enter here will appear at the beginning of each text message, unless you turn off this off in Settings > Start text message with service name.
2016-01-07 12:29:56 +00:00
2018-09-19 12:39:36 +01:00
{% call form_wrapper() %}
{{ form.name }}
2019-04-29 11:44:05 +01:00
{{ page_footer('Save') }}
2018-09-19 12:39:36 +01:00
{% endcall %}
2016-08-24 15:31:49 +01:00
2016-01-07 12:29:56 +00:00
{% endblock %}