|
|
|
@ -1,7 +1,12 @@
|
|
|
|
|
<% if @searched.present? %> |
|
|
|
|
<% search_title = " (search results for ‘#{@searched})’" %> |
|
|
|
|
<% item_label = @pagy.count > 1 ? "users" : "user" %> |
|
|
|
|
<% total_user_count = User.all.count %> |
|
|
|
|
<% title = "Your organisation (#{@pagy.count} #{item_label} matching ‘#{@searched}’ of #{total_user_count} total users)" %> |
|
|
|
|
<% else %> |
|
|
|
|
<% item_label = "" %> |
|
|
|
|
<% total_user_count = nil %> |
|
|
|
|
<% title = "Your organisation (Users)" %> |
|
|
|
|
<% end %> |
|
|
|
|
<% title = "Your organisation (Users)#{search_title}" %> |
|
|
|
|
|
|
|
|
|
<% content_for :title, title %> |
|
|
|
|
|
|
|
|
@ -15,5 +20,5 @@
|
|
|
|
|
|
|
|
|
|
<%= render SearchComponent.new(current_user:, search_label: "Search by name or email address", value: @searched) %> |
|
|
|
|
|
|
|
|
|
<%= render partial: "users/user_list", locals: { users: @users, title:, pagy: @pagy, searched: @searched } %> |
|
|
|
|
<%= render partial: "users/user_list", locals: { users: @users, title:, pagy: @pagy, searched: @searched, item_label:, total_user_count: } %> |
|
|
|
|
<%== render partial: "pagy/nav", locals: { pagy: @pagy, item_name: "users" } %> |
|
|
|
|