diff --git a/app/views/schools/availability_preferences/edit.html.erb b/app/views/schools/availability_preferences/edit.html.erb index 37753ac6f2..339e569067 100644 --- a/app/views/schools/availability_preferences/edit.html.erb +++ b/app/views/schools/availability_preferences/edit.html.erb @@ -1,4 +1,11 @@ -<%- self.page_title = "Choose how dates are displayed" %> +<%- self.page_title = "Choose how dates are displayed" + + self.breadcrumbs = { + @current_school.name => schools_dashboard_path, + 'Choose how dates are displayed' => nil + } + +%>
diff --git a/app/views/schools/confirmed_bookings/cancellations/notification_deliveries/show.html.erb b/app/views/schools/confirmed_bookings/cancellations/notification_deliveries/show.html.erb index 7d1e80a020..501cc69fbb 100644 --- a/app/views/schools/confirmed_bookings/cancellations/notification_deliveries/show.html.erb +++ b/app/views/schools/confirmed_bookings/cancellations/notification_deliveries/show.html.erb @@ -11,7 +11,7 @@ What happens next

- We’ve sent your response to <%= @cancellation.candidate_name %> + We’ve sent your response to <%= @cancellation.candidate_name %>.

We've also sent them a text message asking them to check their inbox. diff --git a/app/views/schools/contact_us/show.html.erb b/app/views/schools/contact_us/show.html.erb index c8be772edd..b68a1a69c9 100644 --- a/app/views/schools/contact_us/show.html.erb +++ b/app/views/schools/contact_us/show.html.erb @@ -1,5 +1,4 @@ <% self.page_title = "Contact us" %> -

Contact us

diff --git a/app/views/schools/organisation_access_requests/show.html.erb b/app/views/schools/organisation_access_requests/show.html.erb index b7b7b035f5..d6208f91ec 100644 --- a/app/views/schools/organisation_access_requests/show.html.erb +++ b/app/views/schools/organisation_access_requests/show.html.erb @@ -1,6 +1,7 @@
+ <%= page_heading "Request access to another organisation" %> <% if @dfe_sign_in_request_organisation_url %> diff --git a/app/views/schools/placement_dates/close_confirmation.html.erb b/app/views/schools/placement_dates/close_confirmation.html.erb index 6089a572e5..b25d9ef489 100644 --- a/app/views/schools/placement_dates/close_confirmation.html.erb +++ b/app/views/schools/placement_dates/close_confirmation.html.erb @@ -1,8 +1,18 @@ +<% self.page_title = 'Close placement date' %> + +<% + self.breadcrumbs = { + @current_school.name => schools_dashboard_path, + 'Manage dates' => schools_placement_dates_path, + "Close placement on #{@placement_date.date.to_formatted_s(:govuk)}" => nil + } +%> +
<%= form_for @confirmation, url: schools_placement_date_close_path(@placement_date.id, confirmed: :confirmed) do |f| %> - <%= f.govuk_radio_buttons_fieldset :confirmed, legend: { text: "Are your sure you want to close the placement on #{@placement_date.date.to_formatted_s(:govuk)}?", class: "govuk-heading-l" } do %> + <%= f.govuk_radio_buttons_fieldset :confirmed, legend: { text: "Are you sure you want to close the placement on #{@placement_date.date.to_formatted_s(:govuk)}?", class: "govuk-heading-l" } do %> <%= f.govuk_radio_button :confirmed, true, label: { text: "Yes" } %> <%= f.govuk_radio_button :confirmed, false, label: { text: "No" } %> <% end %> diff --git a/app/views/schools/placement_requests/cancellations/notification_deliveries/show.html.erb b/app/views/schools/placement_requests/cancellations/notification_deliveries/show.html.erb index 1390e67ece..9a44852896 100644 --- a/app/views/schools/placement_requests/cancellations/notification_deliveries/show.html.erb +++ b/app/views/schools/placement_requests/cancellations/notification_deliveries/show.html.erb @@ -9,7 +9,7 @@ What happens next

- We’ve sent your response to <%= @cancellation.candidate_name %> + We’ve sent your response to <%= @cancellation.candidate_name %>.

<%= govuk_link_to 'Return to requests', schools_placement_requests_path %> diff --git a/app/views/schools/toggle_enabled/edit.html.erb b/app/views/schools/toggle_enabled/edit.html.erb index e9e1ea51fa..1d947af894 100644 --- a/app/views/schools/toggle_enabled/edit.html.erb +++ b/app/views/schools/toggle_enabled/edit.html.erb @@ -1,4 +1,11 @@ -<% self.page_title = "Toggle requests" %> +<% self.page_title = "Turn profile on or off" + + self.breadcrumbs = { + @current_school.name => schools_dashboard_path, + 'Turn profile on or off' => nil + } + +%> <%= form_for @current_school, url: schools_enabled_path, method: 'patch' do |f| %> <%= f.govuk_radio_buttons_fieldset(:enabled) do %> diff --git a/features/schools/toggle_enabling_and_disabling.feature b/features/schools/toggle_enabling_and_disabling.feature index 926f75878e..92fc18ac43 100644 --- a/features/schools/toggle_enabling_and_disabling.feature +++ b/features/schools/toggle_enabling_and_disabling.feature @@ -9,7 +9,7 @@ Feature: Toggling being enabled and disabled Scenario: Page title Given I am on the 'toggle requests' page - Then the page title should be 'Toggle requests' + Then the page title should be 'Turn profile on or off' Scenario: Page contents Given I am on the 'toggle requests' page