|
|
|
<% item_label = @pagy.count > 1 ? "users" : "user" %>
|
|
|
|
<% if @searched.present? %>
|
|
|
|
<% title = "#{current_user.support? ? 'Users' : current_user.organisation.name} (#{@pagy.count} #{item_label} matching ‘#{@searched}’" %>
|
|
|
|
<% else %>
|
|
|
|
<% title = current_user.support? ? "Users" : "#{current_user.organisation.name} (Users)" %>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<% content_for :title, title %>
|
|
|
|
|
|
|
|
<h1 class="govuk-heading-l">
|
|
|
|
<% unless current_user.support? %>
|
|
|
|
<span class="govuk-caption-l"><%= current_user.organisation.name %></span>
|
|
|
|
<% end %>
|
|
|
|
Users
|
|
|
|
</h1>
|
|
|
|
|
|
|
|
<h2 class="govuk-visually-hidden">Users</h2>
|
|
|
|
|
|
|
|
<% if current_user.data_coordinator? || current_user.support? %>
|
|
|
|
<%= govuk_button_link_to "Invite user", new_user_path, html: { method: :get } %>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<%= render SearchComponent.new(current_user:, search_label: "Search by name or email address", value: @searched) %>
|
|
|
|
|
|
|
|
<hr class="govuk-section-break govuk-section-break--visible govuk-section-break--m">
|
|
|
|
|
|
|
|
<%= render partial: "users/user_list", locals: { users: @users, title:, pagy: @pagy, searched: @searched, item_label:, total_count: @total_count } %>
|
|
|
|
<%== render partial: "pagy/nav", locals: { pagy: @pagy, item_name: "users" } %>
|