2020-06-16 15:29:52 +01:00
{% extends "withnav_template.html" %}
{% from "components/page-header.html" import page_header %}
{% from "components/page-footer.html" import page_footer %}
{% from "components/form.html" import form_wrapper %}
2023-08-30 11:07:38 -04:00
{% from "components/components/back-link/macro.njk" import usaBackLink %}
2020-06-16 15:29:52 +01:00
{% block service_page_title %}
Change your service name
{% endblock %}
2021-07-30 18:23:12 +01:00
{% block backLink %}
2023-08-30 11:07:38 -04:00
{{ usaBackLink({ "href": url_for('main.service_settings', service_id=current_service.id) }) }}
2021-07-30 18:23:12 +01:00
{% endblock %}
2020-06-16 15:29:52 +01:00
{% block maincolumn_content %}
2021-07-30 18:23:12 +01:00
{{ page_header('Change your service name') }}
2020-06-16 15:29:52 +01:00
2023-08-25 11:49:13 -04:00
< p class = "usa-body" > Your service name should tell users what the message is about as well as who it’ s from. For example:< / p >
2023-08-25 15:31:44 -04:00
< ul class = "usa-list usa-list--bullet" >
2023-07-12 12:09:44 -04:00
< li > School admissions - {{ current_service.organization.name or current_user.default_organization.name }}< / li >
< li > Electoral services - {{ current_service.organization.name or current_user.default_organization.name }}< / li >
< li > Blue Badge - {{ current_service.organization.name or current_user.default_organization.name }}< / li >
2020-06-16 15:29:52 +01:00
< / ul >
2020-07-02 11:56:05 +01:00
2023-06-06 15:28:24 -04:00
< p > You should only use an acronym or initialism if your users are already familiar with it.< / p >
2020-06-16 15:29:52 +01:00
< div class = "form-group" >
{% if current_service.prefix_sms %}
2023-06-06 15:28:24 -04:00
< p > Users will see your service name at the start of every text message< / p >
2020-06-16 15:29:52 +01:00
{% else %}
2023-06-06 15:28:24 -04:00
< p > Users will see your service name as your email sender name.< / p >
2020-06-16 15:29:52 +01:00
{% endif %}
< / div >
2023-07-21 08:24:10 -07:00
< p > 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.
2020-06-16 15:29:52 +01:00
{% call form_wrapper() %}
2020-07-14 16:51:11 +01:00
{{ form.name }}
2020-06-16 15:29:52 +01:00
{{ page_footer('Save') }}
{% endcall %}
{% endblock %}