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.
24 lines
790 B
24 lines
790 B
4 months ago
|
<% content_for :before_content do %>
|
||
|
<% title = "Users" %>
|
||
|
<% content_for :title, title %>
|
||
|
<%= govuk_back_link href: merge_request_path(@merge_request) %>
|
||
|
<% end %>
|
||
|
|
||
|
<h1 class="govuk-heading-l">
|
||
|
<span class="govuk-caption-l"><%= @merge_request.absorbing_organisation_name %></span>
|
||
|
Users
|
||
|
</h1>
|
||
|
|
||
|
<% unless @merge_request.status == "request_merged" || @merge_request.status == "processing" %>
|
||
|
<h2 class="govuk-heading-m"><%= total_users_after_merge_text(@merge_request) %></h2>
|
||
|
<p class="govuk-body">
|
||
|
<%= merging_organisations_without_users_text(@merge_request.organisations_without_users) %>
|
||
|
</p>
|
||
|
|
||
|
<% @merge_request.organisations_with_users.map do |org| %>
|
||
|
<p class="govuk-body">
|
||
|
<%= link_to_merging_organisation_users(org) %>
|
||
|
</p>
|
||
|
<% end %>
|
||
|
<% end %>
|