You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
2.3 KiB
42 lines
2.3 KiB
<%= form_for(@scheme, as: :scheme, method: :patch) do |f| %> |
|
<%= f.govuk_error_summary %> |
|
|
|
<% content_for :title, "Check your answers before creating this scheme" %> |
|
<%= render partial: "organisations/headings", locals: { main: "Check your changes before creating this scheme", sub: @scheme.service_name } %> |
|
|
|
<%= govuk_tabs(title: "Check your answers before creating this scheme") do |component| %> |
|
<% component.tab(label: "Scheme") do %> |
|
<h2 class="govuk-visually-hidden">Scheme</h2> |
|
<dl class="govuk-summary-list"> |
|
<% @scheme.check_details_attributes.each do |attr| %> |
|
<%= render partial: "scheme_summary_list_row", locals: { scheme: @scheme, attribute: attr, change_link: @scheme.confirmed? ? scheme_edit_name_path(@scheme) : scheme_details_path(@scheme, check_answers: true) } %> |
|
<% end %> |
|
|
|
<% @scheme.check_primary_client_attributes.each do |attr| %> |
|
<%= render partial: "scheme_summary_list_row", locals: { scheme: @scheme, attribute: attr, change_link: scheme_primary_client_group_path(@scheme, check_answers: true) } %> |
|
<% end %> |
|
|
|
<% @scheme.check_secondary_client_confirmation_attributes.each do |attr| %> |
|
<%= render partial: "scheme_summary_list_row", locals: { scheme: @scheme, attribute: attr, change_link: scheme_confirm_secondary_client_group_path(@scheme, check_answers: true) } %> |
|
<% end %> |
|
|
|
<% if @scheme.has_other_client_group == "Yes" %> |
|
<% @scheme.check_secondary_client_attributes.each do |attr| %> |
|
<%= render partial: "scheme_summary_list_row", locals: { scheme: @scheme, attribute: attr, change_link: scheme_secondary_client_group_path(@scheme, check_answers: true) } %> |
|
<% end %> |
|
<% end %> |
|
|
|
<% @scheme.check_support_attributes.each do |attr| %> |
|
<%= render partial: "scheme_summary_list_row", locals: { scheme: @scheme, attribute: attr, change_link: scheme_support_path(@scheme, check_answers: true) } %> |
|
<% end %> |
|
</dl> |
|
<% end %> |
|
<% end %> |
|
<%= f.hidden_field :page, value: "check-answers" %> |
|
<%= f.hidden_field :confirmed, value: "true" %> |
|
<% button_label = @scheme.confirmed? ? "Save" : "Create scheme" %> |
|
|
|
<% if SchemePolicy.new(current_user, @scheme).create? %> |
|
<%= f.govuk_submit button_label %> |
|
<% end %> |
|
<% end %>
|
|
|