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.
31 lines
1.2 KiB
31 lines
1.2 KiB
<% content_for :before_content do %> |
|
<%= govuk_back_link( |
|
text: "Back", |
|
href: "/schemes/#{@scheme.id}/locations", |
|
) %> |
|
<% end %> |
|
|
|
<%= form_for(@location, method: :patch, url: scheme_location_path(scheme_id: @scheme.id, id: @location.id, add_another_location: params[:add_another_location])) do |f| %> |
|
<div class="govuk-grid-row"> |
|
<div class="govuk-grid-column-two-thirds"> |
|
<%= f.govuk_error_summary %> |
|
|
|
<%= render partial: "organisations/headings", locals: { main: "What is the local authority of #{@location.postcode}?", sub: @scheme.service_name } %> |
|
|
|
<%= f.govuk_collection_select :location_admin_district, |
|
local_authorities_selection, |
|
:name, |
|
:name, |
|
label: { hidden: true }, |
|
"data-controller": %w[conditional-filter accessible-autocomplete] %> |
|
|
|
<%= f.hidden_field :page, value: "edit-local-authority" %> |
|
|
|
<div class="govuk-button-group"> |
|
<%= f.govuk_submit "Save and continue" %> |
|
|
|
<%= govuk_link_to "Skip for now", "/schemes/#{@scheme.id}/check-answers#locations" %> |
|
</div> |
|
</div> |
|
</div> |
|
<% end %>
|
|
|