@@ -61,7 +61,7 @@
{% endcall %}
{% call mapping_table(
- caption='Email',
+ caption='Email settings',
field_headings=['Label', 'Value', 'Action'],
field_headings_visible=False,
caption_visible=True
@@ -113,7 +113,7 @@
{% endcall %}
{% call mapping_table(
- caption='Text messages',
+ caption='Text message settings',
field_headings=['Label', 'Value', 'Action'],
field_headings_visible=False,
caption_visible=True
@@ -191,7 +191,7 @@
{% endcall %}
{% call mapping_table(
- caption='Letters',
+ caption='Letter settings',
field_headings=['Label', 'Value', 'Action'],
field_headings_visible=False,
caption_visible=True
diff --git a/app/templates/views/templates/choose.html b/app/templates/views/templates/choose.html
index 4e0e22283..465cd2fdd 100644
--- a/app/templates/views/templates/choose.html
+++ b/app/templates/views/templates/choose.html
@@ -47,7 +47,7 @@
{% else %}
-
+
{{ folder_path(
folders=template_folder_path,
@@ -66,7 +66,7 @@
{% endif %}
{% if show_template_nav %}
-
+
{{ pill(template_nav_items, current_value=template_type, show_count=False) }}
{% endif %}
diff --git a/app/templates/views/templates/template.html b/app/templates/views/templates/template.html
index e47e316e9..82aa1486f 100644
--- a/app/templates/views/templates/template.html
+++ b/app/templates/views/templates/template.html
@@ -29,7 +29,7 @@
{% endcall %}
{% else %}
-
+
{{ folder_path(
folders=current_service.get_template_path(template._template),
diff --git a/app/templates/views/usage-with-letters.html b/app/templates/views/usage-with-letters.html
index ea5e06678..f0b7e901a 100644
--- a/app/templates/views/usage-with-letters.html
+++ b/app/templates/views/usage-with-letters.html
@@ -11,7 +11,7 @@
{% block maincolumn_content %}
-
Usage
+
Usage
{{ pill(years, selected_year, big_number_args={'smallest': True}) }}
diff --git a/app/templates/views/usage.html b/app/templates/views/usage.html
index f85bd07c4..fb10e8581 100644
--- a/app/templates/views/usage.html
+++ b/app/templates/views/usage.html
@@ -11,7 +11,7 @@
{% block maincolumn_content %}
-
Usage
+
Usage
{{ pill(years, selected_year, big_number_args={'smallest': True}) }}
diff --git a/tests/app/main/views/organisations/test_organisation_invites.py b/tests/app/main/views/organisations/test_organisation_invites.py
index bff550321..7f6d80c05 100644
--- a/tests/app/main/views/organisations/test_organisation_invites.py
+++ b/tests/app/main/views/organisations/test_organisation_invites.py
@@ -66,7 +66,7 @@ def test_view_organisation_shows_the_correct_organisation(
org_id=ORGANISATION_ID,
)
- assert normalize_spaces(page.select_one('.heading-large').text) == 'Services'
+ assert normalize_spaces(page.select_one('h1').text) == 'Services'
def test_create_new_organisation(
diff --git a/tests/app/main/views/test_api_integration.py b/tests/app/main/views/test_api_integration.py
index ada49e700..fd7917648 100644
--- a/tests/app/main/views/test_api_integration.py
+++ b/tests/app/main/views/test_api_integration.py
@@ -798,21 +798,21 @@ def test_update_delivery_status_and_receive_text_message_callbacks_without_chang
@pytest.mark.parametrize('service_callback_api, delivery_url, expected_1st_table_row', [
(
None, {},
- 'Callbacks for delivery receipts Not set Change'
+ 'Delivery receipts Not set Change'
),
(
sample_uuid(), {'url': 'https://delivery.receipts'},
- 'Callbacks for delivery receipts https://delivery.receipts Change'
+ 'Delivery receipts https://delivery.receipts Change'
),
])
@pytest.mark.parametrize('inbound_api, inbound_url, expected_2nd_table_row', [
(
None, {},
- 'Callbacks for received text messages Not set Change'
+ 'Received text messages Not set Change'
),
(
sample_uuid(), {'url': 'https://inbound.sms'},
- 'Callbacks for received text messages https://inbound.sms Change'
+ 'Received text messages https://inbound.sms Change'
),
])
def test_callbacks_page_works_when_no_apis_set(