|
|
|
<% content_for :title, "Your organisation (Users)" %>
|
|
|
|
|
|
|
|
<% content_for :tab_title do %>
|
|
|
|
<%= "Users" %>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<% 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:, label: "Search by name or email address") %>
|
|
|
|
|
|
|
|
<%= govuk_table do |table| %>
|
|
|
|
<%= table.caption(size: "s", classes: %w[govuk-!-text-align-left govuk-!-margin-top-4 govuk-!-margin-bottom-4]) do |caption| %>
|
|
|
|
<span class="govuk-!-margin-right-4">
|
|
|
|
<% if @searched %>
|
|
|
|
<strong><span style="font-weight: normal"> Matches </span><%= @pagy.count %><span style="font-weight: normal"> of </span><%= User.count %> <span style="font-weight: normal"> total users</strong></span>
|
|
|
|
<% else %>
|
|
|
|
<strong><%= @pagy.count %></strong><span style="font-weight: normal"> total users</span>
|
|
|
|
<% end %>
|
|
|
|
</span>
|
|
|
|
<% if current_user.support? %>
|
|
|
|
<%= govuk_link_to "Download (CSV)", "/users.csv", type: "text/csv" %>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
<%= table.head do |head| %>
|
|
|
|
<%= head.row do |row| %>
|
|
|
|
<% row.cell(header: true, text: "Name and email adress") %>
|
|
|
|
<% row.cell(header: true, text: "Organisation and role") %>
|
|
|
|
<% row.cell(header: true, text: "Last logged in") %>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
<% @users.each do |user| %>
|
|
|
|
<%= table.body do |body| %>
|
|
|
|
<%= body.row do |row| %>
|
|
|
|
<% row.cell do %>
|
|
|
|
<%= simple_format(user_cell(user), {}, wrapper_tag: "span") %>
|
|
|
|
<% if user.is_data_protection_officer? || user.is_key_contact? %>
|
|
|
|
<br>
|
|
|
|
<% end %>
|
|
|
|
<%= user.is_data_protection_officer? ? govuk_tag(
|
|
|
|
classes: "app-tag--small",
|
|
|
|
colour: "turquoise",
|
|
|
|
text: "Data protection officer",
|
|
|
|
) : "" %>
|
|
|
|
<%= user.is_key_contact? ? govuk_tag(
|
|
|
|
classes: "app-tag--small",
|
|
|
|
colour: "turquoise",
|
|
|
|
text: "Key contact",
|
|
|
|
) : "" %>
|
|
|
|
<% end %>
|
|
|
|
<% row.cell(text: simple_format(org_cell(user), {}, wrapper_tag: "div")) %>
|
|
|
|
<% row.cell(text: user.last_sign_in_at&.to_formatted_s(:govuk_date)) %>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
<%== render partial: "pagy/nav", locals: { pagy: @pagy, item_name: "users" } %>
|