% provide(:title, 'All users') %>
Utenti
<%= iconbutton_new new_user_path %>
<%= will_paginate %>
<%= view_table_head_open %>
<%= view_table_row_open %>
<%= view_table_head_cell_span 3 %>
<%= view_table_head_cell ('Attivo') %>
<%= view_table_head_cell ('Last login IP') %>
<%= view_table_head_cell ('Last request') %>
<%= view_table_head_cell ('Nome') %>
<%= view_table_head_cell ('Email') %>
<%= view_table_head_cell ('Admin') %>
<%= view_table_head_cell ('Role') %>
<%= view_table_head_cell ('Home controller') %>
<%= view_table_head_cell ('Home action') %>
<%= view_table_head_cell ('Person') %>
<%= view_table_head_cell ('Gravatar') %>
<%= view_table_head_cell ('Last REQUEST_URI') %>
<%= view_table_row_close %>
<%= view_table_head_close %>
<%= view_table_body_open %>
<% last_7_days_access_users = @users.where('last_request_at >= ?', 1.week.ago) %>
<%= render partial: "list", locals: { users: last_7_days_access_users } %>
<%= render partial: "list_separator", locals: { title: "Utenti che non hanno acceduto nell'ultima settimana:" } %>
<% remaining_users = @users.where.not(id: last_7_days_access_users.pluck(:id)) %>
<%= render partial: "list", locals: { users: remaining_users } %>
<%= view_table_body_close %>
<%= view_table_close %>
<%= will_paginate %>