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.
34 lines
2.1 KiB
34 lines
2.1 KiB
<% if @organisation.recently_absorbed_organisations_grouped_by_merge_date.present? %> |
|
<%= govuk_details(summary_text: "View all organisations that were merged into #{@organisation.name}") do %> |
|
<% @organisation.recently_absorbed_organisations_grouped_by_merge_date.each do |merge_date, organisations| %> |
|
<p><strong>Merge date:</strong> <%= merge_date&.to_formatted_s(:govuk_date) %></p> |
|
<%= govuk_table do |table| %> |
|
<%= table.with_head do |head| %> |
|
<%= head.with_row do |row| %> |
|
<% row.with_cell(header: true, text: "Organisation name", html_attributes: { scope: "col", class: "govuk-!-width-one-half" }) %> |
|
<% row.with_cell(header: true, text: "Organisation ID", html_attributes: { scope: "col", class: "govuk-!-width-one-half" }) %> |
|
<% end %> |
|
<% end %> |
|
<% organisations.each do |absorbed_org| %> |
|
<%= table.with_body do |body| %> |
|
<%= body.with_row do |row| %> |
|
<% if current_user.support? %> |
|
<% row.with_cell(text: simple_format(govuk_link_to(absorbed_org.name, organisation_path(absorbed_org)), { class: "govuk-!-font-weight-bold scheme-name-cell" }, wrapper_tag: "div")) %> |
|
<% else %> |
|
<% row.with_cell(text: absorbed_org.name) %> |
|
<% end %> |
|
<% row.with_cell(text: "ORG#{absorbed_org.id}") %> |
|
<% end %> |
|
<% end %> |
|
<% end %> |
|
<% end %> |
|
<% end %> |
|
<% end %> |
|
<% end %> |
|
<% if @organisation.absorbing_organisation.present? %> |
|
<% if current_user.support? %> |
|
<p><%= @organisation.name %> was merged into <%= govuk_link_to(@organisation.absorbing_organisation.name, organisation_path(@organisation.absorbing_organisation)) %><%= @organisation.merge_date ? " on #{@organisation.merge_date.to_formatted_s(:govuk_date)}" : "" %>.</p> |
|
<% else %> |
|
<p><%= @organisation.name %> was merged into <%= @organisation.absorbing_organisation.name %><%= @organisation.merge_date ? " on #{@organisation.merge_date.to_formatted_s(:govuk_date)}" : "" %>.</p> |
|
<% end %> |
|
<% end %>
|
|
|