diff --git a/app/components/accredited_provider_component.html.erb b/app/components/accredited_provider_component.html.erb index cc48520948..aa6106dbc2 100644 --- a/app/components/accredited_provider_component.html.erb +++ b/app/components/accredited_provider_component.html.erb @@ -1,6 +1,6 @@ <%= govuk_summary_card(title: provider_name) do |card| card.with_action { govuk_link_to("Remove", remove_path, class: "app-link--destructive govuk-!-font-weight-regular", data: { qa: "remove-link" }) } - card.with_summary_list(rows: [{ key: { text: "About the accredited provider" }, + card.with_summary_list(rows: [{ key: { text: "About the accredited partner" }, value: { text: markdown(about_accredited_provider) }, actions: [{ href: change_about_accredited_provider_path }] }]) end %> diff --git a/app/components/add_course_button.rb b/app/components/add_course_button.rb index 64ca287d0e..23601b295b 100644 --- a/app/components/add_course_button.rb +++ b/app/components/add_course_button.rb @@ -28,7 +28,7 @@ def incomplete_sections_hash def incomplete_section_label_suffix(section) labels = { - accredited_provider_not_present?: 'accredited provider', + accredited_provider_not_present?: 'accredited partner', site_not_present?: 'school' } @@ -64,6 +64,6 @@ def accredited_provider? end def incomplete_section_article(section) - incomplete_section_label_suffix(section) == 'accredited provider' ? 'an' : 'a' + incomplete_section_label_suffix(section) == 'accredited partner' ? 'an' : 'a' end end diff --git a/app/controllers/publish/courses/accredited_provider_controller.rb b/app/controllers/publish/courses/accredited_provider_controller.rb index 49fcb7ec7f..59993ca901 100644 --- a/app/controllers/publish/courses/accredited_provider_controller.rb +++ b/app/controllers/publish/courses/accredited_provider_controller.rb @@ -65,7 +65,7 @@ def update if update_params[:accredited_provider_code] == 'other' redirect_to_provider_search elsif @course.update(update_params) - course_updated_message('Accredited provider') + course_updated_message('Ratifying partner') redirect_to_update_successful else @errors = @course.errors.messages @@ -127,7 +127,7 @@ def errors_for_search_query(code, query) if other_selected_with_no_autocompleted_code?(code) && query.length < 2 errors = { accredited_provider: ['Accredited provider search too short, enter 2 or more characters'] } elsif code.blank? - errors = { accredited_provider_code: ['Select an accredited provider'] } + errors = { accredited_provider_code: ['Select a ratifying partner'] } end errors diff --git a/app/controllers/publish/providers/accredited_providers/checks_controller.rb b/app/controllers/publish/providers/accredited_providers/checks_controller.rb index 287a092d56..f82af34bf5 100644 --- a/app/controllers/publish/providers/accredited_providers/checks_controller.rb +++ b/app/controllers/publish/providers/accredited_providers/checks_controller.rb @@ -10,7 +10,7 @@ def show def update accredited_provider_form.save! - redirect_to publish_provider_recruitment_cycle_accredited_providers_path(@provider.provider_code, @provider.recruitment_cycle_year), flash: { success: 'Accredited provider added' } + redirect_to publish_provider_recruitment_cycle_accredited_providers_path(@provider.provider_code, @provider.recruitment_cycle_year), flash: { success: 'Accredited partner added' } end private diff --git a/app/controllers/support/providers/accredited_providers/checks_controller.rb b/app/controllers/support/providers/accredited_providers/checks_controller.rb index d72f3dbfcc..37e750f718 100644 --- a/app/controllers/support/providers/accredited_providers/checks_controller.rb +++ b/app/controllers/support/providers/accredited_providers/checks_controller.rb @@ -15,7 +15,7 @@ def update redirect_to support_recruitment_cycle_provider_accredited_providers_path( recruitment_cycle.year, provider.id - ), flash: { success: 'Accredited provider added' } + ), flash: { success: 'Accredited partner added' } end private diff --git a/app/helpers/navigation_bar_helper.rb b/app/helpers/navigation_bar_helper.rb index 5ce3131249..cf7b26995c 100644 --- a/app/helpers/navigation_bar_helper.rb +++ b/app/helpers/navigation_bar_helper.rb @@ -14,7 +14,7 @@ def navigation_items(provider) { name: t('navigation_bar.study_sites'), url: publish_provider_recruitment_cycle_study_sites_path(provider.provider_code, provider.recruitment_cycle_year) }, { name: t('navigation_bar.users'), url: publish_provider_users_path(provider_code: provider.provider_code), additional_url: request_access_publish_provider_path(provider.provider_code) }, *([name: t('navigation_bar.training_partners'), url: publish_provider_recruitment_cycle_training_providers_path(provider.provider_code, provider.recruitment_cycle_year)] if provider.accredited_provider?), - *([name: t('navigation_bar.accredited_provider'), url: publish_provider_recruitment_cycle_accredited_providers_path(provider.provider_code, provider.recruitment_cycle_year)] unless provider.accredited_provider?), + *([name: t('navigation_bar.accredited_partnerships'), url: publish_provider_recruitment_cycle_accredited_providers_path(provider.provider_code, provider.recruitment_cycle_year)] unless provider.accredited_provider?), { name: t('navigation_bar.organisation_details'), url: details_publish_provider_recruitment_cycle_path(provider.provider_code, provider.recruitment_cycle_year) } ] end diff --git a/app/views/layouts/provider_record.html.erb b/app/views/layouts/provider_record.html.erb index 9da8b899d9..10cd6c4821 100644 --- a/app/views/layouts/provider_record.html.erb +++ b/app/views/layouts/provider_record.html.erb @@ -16,7 +16,7 @@ { name: "Users", url: support_recruitment_cycle_provider_users_path(@provider.recruitment_cycle_year, @provider) }, { name: "Courses", url: support_recruitment_cycle_provider_courses_path(@provider.recruitment_cycle_year, @provider) }, { name: "Schools", url: support_recruitment_cycle_provider_schools_path(@provider.recruitment_cycle_year, @provider) }, - *([{ name: "Accredited providers", url: support_recruitment_cycle_provider_accredited_providers_path(@provider.recruitment_cycle_year, @provider) }] unless @provider.accredited_provider?) + *([{ name: "Accredited partnerships", url: support_recruitment_cycle_provider_accredited_providers_path(@provider.recruitment_cycle_year, @provider) }] unless @provider.accredited_provider?) ]) %> <%= yield %> diff --git a/app/views/pages/change_an_accredited_provider_relationship.html.erb b/app/views/pages/change_an_accredited_provider_relationship.html.erb index bb0f14a340..917cedc036 100644 --- a/app/views/pages/change_an_accredited_provider_relationship.html.erb +++ b/app/views/pages/change_an_accredited_provider_relationship.html.erb @@ -5,7 +5,7 @@ <%= govuk_breadcrumbs(breadcrumbs: [ govuk_breadcrumb_link_to("Home", root_path), govuk_breadcrumb_link_to("How to use this service", how_to_use_this_service_path), - govuk_breadcrumb_link_to("Change an accredited provider relationship", + govuk_breadcrumb_link_to("Change an accredited partnership", change_an_accredited_provider_relationship_path) ]) %> @@ -16,43 +16,43 @@

How to use this service - Change an accredited provider relationship + Change an accredited partnership

If you’re a training partner (non-accredited provider), we need to know who you work with to run your courses.

-

Adding and deleting an accredited provider

+

Adding and deleting an accredited partnership

- You need to select which accredited provider ratifies a course before you can publish it. You’ll also need to write a short description about the accredited provider. It’s a good idea to ask the accredited provider to check this content and approve it. + You need to select which accredited partner ratifies a course before you can publish it. You’ll also need to write a short description about the accredited partner. It’s a good idea to ask the accredited partner to check this content and approve it.

-

Go to the ‘Accredited providers’ tab in your account to:

+

Go to the ‘Accredited partnerships’ tab in your account to:

- You’ll be asked to specify which accredited provider you’re working with for each course before you can publish it. + You’ll be asked to specify which accredited partner you’re working with for each course before you can publish it.

- If you want to give people at the accredited provider organisation access to your courses, you can <%= govuk_link_to("add them as a user", add_and_remove_users_path) %>. + If you want to give people at the accredited partner organisation access to your courses, you can <%= govuk_link_to("add them as a user", add_and_remove_users_path) %>.

-

Changing your accredited provider

+

Changing your ratifying partner

- If the organisation you were working with is no longer an accredited provider, you’ll need to select a different provider before publishing any new courses. You’ll be prompted to do this when <%= govuk_link_to("publishing rolled over courses", roll_over_courses_to_a_new_recruitment_cycle_path) %>. + If the organisation you were working with is no longer an accredited provider, you’ll need to select a different partner before publishing any new courses. You’ll be prompted to do this when <%= govuk_link_to("publishing rolled over courses", roll_over_courses_to_a_new_recruitment_cycle_path) %>.

- If you need to change an accredited provider for a course that has already been published on Find, contact us at + If you need to change an ratifying partner for a course that has already been published on Find, contact us at <%= Settings.support_email %>.

diff --git a/app/views/pages/how_to_use_this_service.html.erb b/app/views/pages/how_to_use_this_service.html.erb index df47c31403..c222eb1ec5 100644 --- a/app/views/pages/how_to_use_this_service.html.erb +++ b/app/views/pages/how_to_use_this_service.html.erb @@ -24,7 +24,7 @@

Managing courses

diff --git a/app/views/publish/courses/_basic_details_tab.html.erb b/app/views/publish/courses/_basic_details_tab.html.erb index 18900b33b3..68fdd33804 100644 --- a/app/views/publish/courses/_basic_details_tab.html.erb +++ b/app/views/publish/courses/_basic_details_tab.html.erb @@ -153,21 +153,21 @@ end unless @provider.accredited_provider? - summary_list.with_row(html_attributes: { data: { qa: "course__accredited_provider" } }) do |row| - row.with_key { "Accredited provider" } + summary_list.with_row(html_attributes: { data: { qa: "course__ratifying_partner" } }) do |row| + row.with_key { "Ratifying partner" } row.with_value { course.accrediting_provider&.provider_name } if course.is_published? || course.is_withdrawn? row.with_action elsif !course.accrediting_provider.nil? row.with_action(href: accredited_provider_publish_provider_recruitment_cycle_course_path(@provider.provider_code, course.recruitment_cycle_year, course.course_code), - visually_hidden_text: "accredited provider") + visually_hidden_text: "ratifying partner") elsif @provider.accredited_providers.any? row.with_value do - "
#{govuk_link_to('Select an accredited provider', accredited_provider_publish_provider_recruitment_cycle_course_path(@course.provider_code, @course.recruitment_cycle_year, @course.course_code))}
".html_safe + "
#{govuk_link_to('Select an accredited partner', accredited_provider_publish_provider_recruitment_cycle_course_path(@course.provider_code, @course.recruitment_cycle_year, @course.course_code))}
".html_safe end else row.with_value do - "
#{govuk_link_to('Add at least one accredited provider', publish_provider_recruitment_cycle_accredited_providers_path(@course.provider_code, @course.recruitment_cycle_year))}
".html_safe + "
#{govuk_link_to('Add at least one accredited partner', publish_provider_recruitment_cycle_accredited_providers_path(@course.provider_code, @course.recruitment_cycle_year))}
".html_safe end end end diff --git a/app/views/publish/courses/accredited_provider/_provider_suggestion.html.erb b/app/views/publish/courses/accredited_provider/_provider_suggestion.html.erb index c8d347af03..96e9ffa36e 100644 --- a/app/views/publish/courses/accredited_provider/_provider_suggestion.html.erb +++ b/app/views/publish/courses/accredited_provider/_provider_suggestion.html.erb @@ -1,4 +1,4 @@ -
+
<%= form.radio_button :accredited_provider_code, provider_suggestion[:provider_code], checked: provider_suggestion[:provider_code] == @course.accrediting_provider&.provider_code, diff --git a/app/views/publish/courses/accredited_provider/edit.html.erb b/app/views/publish/courses/accredited_provider/edit.html.erb index f431942f30..21fc927329 100644 --- a/app/views/publish/courses/accredited_provider/edit.html.erb +++ b/app/views/publish/courses/accredited_provider/edit.html.erb @@ -1,4 +1,4 @@ -<% content_for :page_title, title_with_error_prefix("Accredited provider – #{course.name_and_code}", course.errors.any?) %> +<% content_for :page_title, title_with_error_prefix("Ratifying partner – #{course.name_and_code}", course.errors.any?) %> <% content_for :before_content do %> <%= govuk_back_link_to(details_publish_provider_recruitment_cycle_course_path(course.provider_code, course.recruitment_cycle_year, course.course_code)) %> @@ -10,7 +10,7 @@

<%= render CaptionText.new(text: course.name_and_code) %> - Accredited provider + Ratifying partner

@@ -20,14 +20,14 @@ url: accredited_provider_publish_provider_recruitment_cycle_course_path(@course.provider_code, @course.recruitment_cycle_year, @course.course_code), method: :put do |form| %> -
+
<%= render partial: "provider_suggestion", collection: @provider.accredited_bodies, locals: { form: } %>
- <%= form.submit "Update accredited provider", class: "govuk-button govuk-!-margin-top-5", data: { qa: "course__save" } %> + <%= form.submit "Update ratifying partner", class: "govuk-button govuk-!-margin-top-5", data: { qa: "course__save" } %> <%= govuk_link_to( - "Add accredited provider", + "Add accredited partner", search_publish_provider_recruitment_cycle_accredited_providers_path(course.provider_code, course.recruitment_cycle_year), class: "govuk-!-margin-bottom-6 govuk-!-margin-top-5", data: { qa: "course__add" } diff --git a/app/views/publish/courses/accredited_provider/new.html.erb b/app/views/publish/courses/accredited_provider/new.html.erb index 163b73fca3..7296f37b18 100644 --- a/app/views/publish/courses/accredited_provider/new.html.erb +++ b/app/views/publish/courses/accredited_provider/new.html.erb @@ -1,4 +1,4 @@ -<% content_for :page_title, title_with_error_prefix("Accredited provider – #{course.name_and_code}", @errors && @errors.any?) %> +<% content_for :page_title, title_with_error_prefix("Ratifying partner – #{course.name_and_code}", @errors && @errors.any?) %> <% content_for :before_content do %> <%= govuk_back_link_to(@back_link_path) %> @@ -9,17 +9,17 @@
<%= form_with url: continue_publish_provider_recruitment_cycle_courses_accredited_provider_path(@provider.provider_code, @provider.recruitment_cycle_year), method: :get do |form| %> <%= render "publish/courses/new_fields_holder", form:, except_keys: [:accredited_provider_code] do |fields| %> - <%= render "publish/shared/error_wrapper", error_keys: [:accredited_provider_code], data_qa: "course__accredited_provider" do %> + <%= render "publish/shared/error_wrapper", error_keys: [:accredited_provider_code], data_qa: "course__ratifying_partner" do %>

<%= render CaptionText.new(text: t("course.add_course")) %> - Accredited provider + Ratifying partner

<%= render "publish/shared/error_messages", error_keys: [:accredited_provider_code] %> -
+
<% if @provider.accredited_bodies.length > 0 %> <%= render partial: "provider_suggestion", collection: @provider.accredited_bodies.sort_by { |k| k[:provider_name] }, locals: { form: fields } %> <% else %> diff --git a/app/views/publish/courses/accredited_provider/search.html.erb b/app/views/publish/courses/accredited_provider/search.html.erb index 4e3c6e27b9..b1563304bd 100644 --- a/app/views/publish/courses/accredited_provider/search.html.erb +++ b/app/views/publish/courses/accredited_provider/search.html.erb @@ -9,7 +9,7 @@

- Pick an accredited provider + Pick an accredited partner

You searched for ‘<%= @query %>’.

@@ -21,7 +21,7 @@ <% if @provider_suggestions.any? %>

We found these providers which matched your search:

-
+
<%= render partial: "provider_suggestion", collection: @provider_suggestions, locals: { form: } %>
or
diff --git a/app/views/publish/courses/accredited_provider/search_new.html.erb b/app/views/publish/courses/accredited_provider/search_new.html.erb index 1d11bc2dc2..e5537b52cc 100644 --- a/app/views/publish/courses/accredited_provider/search_new.html.erb +++ b/app/views/publish/courses/accredited_provider/search_new.html.erb @@ -5,7 +5,7 @@

- Pick an accredited provider + Pick an accredited partner

You searched for ‘<%= @query %>’.

@@ -25,7 +25,7 @@ <% if @provider_suggestions.any? %>

We found these providers which matched your search:

-
+
<%= render partial: "provider_suggestion", collection: @provider_suggestions, locals: { form: } %>
or
diff --git a/app/views/publish/courses/confirmation.html.erb b/app/views/publish/courses/confirmation.html.erb index 54c8f5ee99..1ed80db0b1 100644 --- a/app/views/publish/courses/confirmation.html.erb +++ b/app/views/publish/courses/confirmation.html.erb @@ -152,13 +152,13 @@ <% end %> <% unless @provider.accredited_provider? || course.is_further_education? %> - <% summary_list.with_row(html_attributes: { data: { qa: "course__accredited_provider" } }) do |row| %> - <% row.with_key { "Accredited provider" } %> + <% summary_list.with_row(html_attributes: { data: { qa: "course__ratifying_partner" } }) do |row| %> + <% row.with_key { "Ratifying partner" } %> <% row.with_value { course.accrediting_provider.provider_name } %> <% if @provider.accredited_bodies.length > 1 %> <% row.with_action( href: new_publish_provider_recruitment_cycle_courses_accredited_provider_path(course.provider.provider_code, course.recruitment_cycle.year, params.to_unsafe_h.merge(goto_confirmation: true)), - visually_hidden_text: "accredited provider" + visually_hidden_text: "ratifying partner" ) %> <% else %> <% row.with_action %> diff --git a/app/views/publish/courses/index.html.erb b/app/views/publish/courses/index.html.erb index 978e2db780..237834c627 100644 --- a/app/views/publish/courses/index.html.erb +++ b/app/views/publish/courses/index.html.erb @@ -14,7 +14,7 @@ <% @courses_by_accrediting_provider.each do |accrediting_provider, courses| %>

- Accredited provider + Ratifying partner <%= accrediting_provider %>

diff --git a/app/views/publish/providers/accredited_provider_search/results.html.erb b/app/views/publish/providers/accredited_provider_search/results.html.erb index 172033f8e9..865acc0b2e 100644 --- a/app/views/publish/providers/accredited_provider_search/results.html.erb +++ b/app/views/publish/providers/accredited_provider_search/results.html.erb @@ -19,7 +19,7 @@ <%= render search_result_title_component %> <% unless @accredited_provider_search.providers.empty? %> - <%= f.govuk_radio_buttons_fieldset(:provider_id, legend: { text: "Accredited provider", size: "m" }) do %> + <%= f.govuk_radio_buttons_fieldset(:provider_id, legend: { text: "Accredited partner", size: "m" }) do %> <% @accredited_provider_search.providers.each_with_index do |provider, index| %> <%= f.govuk_radio_button :provider_id, provider.id, label: { text: provider.name_and_code }, link_errors: index.zero? %> <% end %> diff --git a/app/views/publish/providers/accredited_providers/_can_remove.html.erb b/app/views/publish/providers/accredited_providers/_can_remove.html.erb index 5694b28c23..439d9a21aa 100644 --- a/app/views/publish/providers/accredited_providers/_can_remove.html.erb +++ b/app/views/publish/providers/accredited_providers/_can_remove.html.erb @@ -11,7 +11,7 @@ <%= t("publish.providers.accredited_providers.delete.title") %> - <%= govuk_button_to "Remove accredited provider", + <%= govuk_button_to "Remove accredited partner", delete_publish_provider_recruitment_cycle_accredited_provider_path, method: :delete, class: "govuk-button--warning" %> diff --git a/app/views/publish/providers/accredited_providers/_cannot_remove.html.erb b/app/views/publish/providers/accredited_providers/_cannot_remove.html.erb index 391f29410b..38d2ba426d 100644 --- a/app/views/publish/providers/accredited_providers/_cannot_remove.html.erb +++ b/app/views/publish/providers/accredited_providers/_cannot_remove.html.erb @@ -1,4 +1,4 @@ -<% content_for :page_title, "You cannot remove this accredited provider" %> +<% content_for :page_title, "You cannot remove this accredited partner" %> <% content_for :before_content do %> <%= govuk_back_link_to(publish_provider_recruitment_cycle_accredited_providers_path) %> @@ -8,17 +8,17 @@

<%= @accredited_provider.provider_name %> - You cannot remove this accredited provider + You cannot remove this accredited partner

<%= @accredited_provider.provider_name %> is an - accredited provider for courses run by <%= @provider.provider_name %>. At least one of these courses is + ratifying partner for courses run by <%= @provider.provider_name %>. At least one of these courses is currently published on Find.

- If you need to change an accredited provider for a course which is published, please contact us at + If you need to change an ratifying partner for a course which is published, please contact us at <%= bat_contact_mail_to %>.

diff --git a/app/views/publish/providers/accredited_providers/checks/show.html.erb b/app/views/publish/providers/accredited_providers/checks/show.html.erb index 4bebd387e0..e9a49dc93d 100644 --- a/app/views/publish/providers/accredited_providers/checks/show.html.erb +++ b/app/views/publish/providers/accredited_providers/checks/show.html.erb @@ -18,15 +18,15 @@ <%= render GovukComponent::SummaryListComponent.new do |component| component.with_row do |row| - row.with_key { "Accredited provider" } + row.with_key { "Accredited partner" } row.with_value { @accredited_provider_form.provider_name } - row.with_action(text: "Change", href: search_publish_provider_recruitment_cycle_accredited_providers_path(goto_confirmation: true), visually_hidden_text: "accredited provider name") + row.with_action(text: "Change", href: search_publish_provider_recruitment_cycle_accredited_providers_path(goto_confirmation: true), visually_hidden_text: "accredited partner name") end component.with_row do |row| - row.with_key { "About the accredited provider" } + row.with_key { "About the accredited partner" } row.with_value { markdown @accredited_provider_form.description } - row.with_action(text: "Change", href: new_publish_provider_recruitment_cycle_accredited_provider_path(goto_confirmation: true), visually_hidden_text: "accredited provider description") + row.with_action(text: "Change", href: new_publish_provider_recruitment_cycle_accredited_provider_path(goto_confirmation: true), visually_hidden_text: "accredited partner description") end end %> diff --git a/app/views/publish/providers/accredited_providers/edit.html.erb b/app/views/publish/providers/accredited_providers/edit.html.erb index 506d2bd5a1..205854a157 100644 --- a/app/views/publish/providers/accredited_providers/edit.html.erb +++ b/app/views/publish/providers/accredited_providers/edit.html.erb @@ -1,4 +1,4 @@ -<% content_for :page_title, title_with_error_prefix("About the accredited provider - #{@accredited_provider.provider_name}", @accredited_provider_form.errors.present?) %> +<% content_for :page_title, title_with_error_prefix("About the accredited partnership - #{@accredited_provider.provider_name}", @accredited_provider_form.errors.present?) %> <%= form_with( model: @accredited_provider_form, diff --git a/app/views/publish/providers/accredited_providers/index.html.erb b/app/views/publish/providers/accredited_providers/index.html.erb index 6cbf5b13db..76bb2b5527 100644 --- a/app/views/publish/providers/accredited_providers/index.html.erb +++ b/app/views/publish/providers/accredited_providers/index.html.erb @@ -1,12 +1,12 @@ -<% content_for :page_title, title_with_error_prefix("Accredited providers", nil) %> +<% content_for :page_title, title_with_error_prefix("Accredited partners", nil) %>

- Accredited providers + Accredited partners

- <%= govuk_button_link_to("Add accredited provider", search_publish_provider_recruitment_cycle_accredited_providers_path( + <%= govuk_button_link_to("Add accredited partner", search_publish_provider_recruitment_cycle_accredited_providers_path( provider_code: @provider.provider_code, recruitment_cycle_year: @provider.recruitment_cycle_year )) %> @@ -16,7 +16,7 @@
<% if @provider.accredited_bodies.none? %> -

There are no accredited providers for <%= @provider.provider_name %>.

+

There are no accredited partners for <%= @provider.provider_name %>.

<% else %> <% @provider.accredited_bodies.each do |accredited_body| %> <%= render AccreditedProviderComponent.new(provider_name: accredited_body[:provider_name], remove_path: delete_publish_provider_recruitment_cycle_accredited_provider_path(accredited_provider_code: accredited_body[:provider_code]), about_accredited_provider: accredited_body[:description], change_about_accredited_provider_path: edit_publish_provider_recruitment_cycle_accredited_provider_path(accredited_provider_code: accredited_body[:provider_code])) %> diff --git a/app/views/publish/providers/accredited_providers/new.html.erb b/app/views/publish/providers/accredited_providers/new.html.erb index d389e45095..c6876faff3 100644 --- a/app/views/publish/providers/accredited_providers/new.html.erb +++ b/app/views/publish/providers/accredited_providers/new.html.erb @@ -1,4 +1,4 @@ -<% content_for :page_title, title_with_error_prefix("About the accredited provider - Add accredited provider - #{@provider.name_and_code}", @accredited_provider_form.errors.present?) %> +<% content_for :page_title, title_with_error_prefix("About the accredited partnership - Add accredited partner - #{@provider.name_and_code}", @accredited_provider_form.errors.present?) %> <%= form_with( model: @accredited_provider_form, diff --git a/app/views/publish/providers/training_providers/index.html.erb b/app/views/publish/providers/training_providers/index.html.erb index 57c95c31dd..92ee66aa13 100644 --- a/app/views/publish/providers/training_providers/index.html.erb +++ b/app/views/publish/providers/training_providers/index.html.erb @@ -35,7 +35,7 @@