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

43 lines
1.3 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 %}
2022-12-14 11:50:51 -05:00
{% from "components/uk_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>
2016-08-24 15:31:49 +01:00
<div class="form-group">
{% if current_service.prefix_sms %}
<p class="govuk-body">Users will see your service name:</p>
<ul class="list-bullet">
2019-07-16 16:05:42 +01:00
<li>at the start of every text message</li>
<li>as your email sender name</li>
</ul>
{% 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>
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 %}