Files
timeoverflow/app/views/statistics/inactive_users.html.erb
Francisco José Perejón Barrios 6119ffe286 Upgrade to Bootstrap v5 (#780)
2025-03-22 16:30:47 +01:00

31 lines
976 B
Plaintext

<h1>
<%= t 'global.statistics' %>: <%= t '.inactive_users' %>
</h1>
<div class="card">
<div class="card-body table-responsive">
<table class="table table-hover table-sm">
<thead>
<tr>
<th>ID</th>
<th><%= User.human_attribute_name :username %></th>
<th><%= t '.days_without_swaps' %></th>
<th><%= t '.last_movement' %></th>
</tr>
</thead>
<tbody>
<% @members.includes(:account)
.sort_by(&:days_without_swaps)
.reverse
.each do |mem| %>
<tr>
<td><%= mem.member_uid %></td>
<td><%= link_to mem.user.username, mem.user %></td>
<td><%= mem.days_without_swaps %></td>
<td><%= (mem.account.updated_at == mem.account.created_at) ? t(".no_movements") : l(mem.account.updated_at, format: :long) %></td>
</tr>
<% end %>
</tbody>
</table>
</div>
</div>