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.
51 lines
2.4 KiB
51 lines
2.4 KiB
<% content_for :before_content do %> |
|
<% title = "Tell us if your organisation is merging" %> |
|
<% content_for :title, title %> |
|
<%= govuk_back_link href: merge_request_organisation_path(id: @merge_request.requesting_organisation_id) %> |
|
<% end %> |
|
|
|
<%= form_with model: @merge_request, url: organisations_merge_request_path, method: :patch do |f| %> |
|
<%= f.govuk_error_summary %> |
|
<h2 class="govuk-heading-l">Which organisations are merging?</h2> |
|
|
|
<div class="govuk-grid-row"> |
|
<div class="govuk-grid-column-two-thirds-from-desktop"> |
|
<p class="govuk-body"> |
|
Add all organisations to be merged - we have already added your own. |
|
</p> |
|
|
|
<p class="govuk-body">Start typing to search</p> |
|
<%= render partial: "organisation_relationships/related_organisation_select_question", locals: { |
|
field: :merging_organisation, |
|
question: Form::Question.new("", { "answer_options" => @answer_options }, nil), |
|
f:, |
|
} %> |
|
<%= f.govuk_submit "Add organisation", classes: "govuk-button--secondary" %> |
|
<%= govuk_table do |table| %> |
|
<% @merge_request.merging_organisations.order(:name).each do |merging_organisation| %> |
|
<%= table.with_body do |body| %> |
|
<%= body.with_row do |row| %> |
|
<% row.with_cell(text: merging_organisation.name) %> |
|
<% row.with_cell(html_attributes: { |
|
scope: "row", |
|
class: "govuk-!-text-align-right", |
|
}) do %> |
|
<% if @merge_request.requesting_organisation != merging_organisation %> |
|
<%= govuk_link_to("Remove", organisations_remove_merge_request_path(merge_request: { merging_organisation: merging_organisation.id })) %> |
|
<% end %> |
|
<% end %> |
|
<% end %> |
|
<% end %> |
|
<% end %> |
|
<% end %> |
|
<% end %> |
|
<%= form_with model: @merge_request, url: merge_request_path(id: @merge_request.id), method: :patch do |f| %> |
|
<%= govuk_details(summary_text: "I cannot find an organisation on the list") do %> |
|
<%= f.govuk_text_area :other_merging_organisations, label: { text: "Other organisations" }, hint: { text: "List other organisations that are part of the merge but not registered on CORE." }, rows: 9 %> |
|
<% end %> |
|
<% if @merge_request.merging_organisations.count > 1 %> |
|
<%= f.hidden_field :page, value: "organisations" %> |
|
<%= f.govuk_submit "Continue" %> |
|
<% end %> |
|
<% end %> |
|
</div>
|
|
|