diff --git a/app/views/schemes/check_answers.html.erb b/app/views/schemes/check_answers.html.erb index d2254147b..5a6fcaa90 100644 --- a/app/views/schemes/check_answers.html.erb +++ b/app/views/schemes/check_answers.html.erb @@ -16,6 +16,10 @@ <%= summary_list.row do |row| %> <% row.key { attr[:name].eql?("Registered under Care Standards Act 2000") ? "Registered under Care Standards Act 2000" : attr[:name].to_s.humanize } %> <% row.value { details_html(attr) } %> + <% row.action( + text: "Change", + href: scheme_details_path(scheme_id: @scheme.id), + ) %> <% end %> <% end %> <% end %> diff --git a/app/views/schemes/confirm_secondary.html.erb b/app/views/schemes/confirm_secondary.html.erb index 382d33094..7f7da7d35 100644 --- a/app/views/schemes/confirm_secondary.html.erb +++ b/app/views/schemes/confirm_secondary.html.erb @@ -1,4 +1,4 @@ -<% content_for :title, "What client group is this scheme intended for?" %> +<% content_for :title, "Does this scheme provide for another client group?" %> <% content_for :before_content do %> <%= govuk_back_link( diff --git a/app/views/schemes/details.html.erb b/app/views/schemes/details.html.erb index 3dd5d3489..19498feb4 100644 --- a/app/views/schemes/details.html.erb +++ b/app/views/schemes/details.html.erb @@ -9,7 +9,7 @@ <%= render partial: "organisations/headings", locals: { main: "Scheme details", sub: @scheme.service_name } %> -<%= form_for(@scheme, method: :patch, url: scheme_check_answers_path(scheme_id: @scheme.id)) do |f| %> +<%= form_for(@scheme, method: :patch, url: scheme_check_your_answers_path(scheme_id: @scheme.id)) do |f| %>