diff --git a/app/templates/views/templates/_template.html b/app/templates/views/templates/_template.html index 39ef0ca46..15d87d0fb 100644 --- a/app/templates/views/templates/_template.html +++ b/app/templates/views/templates/_template.html @@ -19,7 +19,7 @@
{% if current_user.has_permissions('send_messages', restrict_admin_usage=True) %} - Prepare to send a message using this template + Use this template {% endif %} {% if current_user.has_permissions('manage_templates') %} diff --git a/tests/app/main/views/test_templates.py b/tests/app/main/views/test_templates.py index 32b717460..71741a4c8 100644 --- a/tests/app/main/views/test_templates.py +++ b/tests/app/main/views/test_templates.py @@ -545,7 +545,7 @@ def test_user_with_only_send_and_view_redirected_to_set_sender_for_one_off( ( ["send_messages", "manage_templates"], [ - (".set_sender", "Prepare to send a message using this template"), + (".set_sender", "Use this template"), (".edit_service_template", "Edit"), ], None,