Fix misleading <h1> in one-off flow

Changing the `<h1>` in https://github.com/alphagov/notifications-admin/pull/1638
turned out to be quite confusing. The combination of the word
"recipient" and a selection of email addresses on the page was confusing.

This commit changes the page title to be much more explicit about what
is expected from the page, rather than what is consistent with the text
of the link that the user clicked.
This commit is contained in:
Chris Hill-Scott
2017-11-20 16:47:03 +00:00
parent 4105b6ff55
commit ecd43cee5e
2 changed files with 4 additions and 4 deletions

View File

@@ -217,8 +217,8 @@ def set_sender(service_id, template_id):
def get_sender_context(sender_details, template_type):
context = {
'email': {
'title': 'Where should replies go?',
'description': 'Where should replies go?',
'title': 'Where should replies come back to?',
'description': 'Where should replies come back to?',
'field_name': 'email_address'
},
'letter': {

View File

@@ -44,8 +44,8 @@ test_non_spreadsheet_files = glob(path.join('tests', 'non_spreadsheet_files', '*
(
mock_get_service_email_template,
multiple_reply_to_email_addresses,
'Where should replies go?',
'Where should replies go?',
'Where should replies come back to?',
'Where should replies come back to?',
),
(
mock_get_service_template,