Rearrange data in blocks table to start/end/status columns

This commit is contained in:
Anton Khorev 2023-08-23 19:59:30 +03:00
parent 572d1adaae
commit 30da09c5a1
4 changed files with 57 additions and 11 deletions

View file

@ -6,14 +6,13 @@
<td><%= link_to block.creator.display_name, block.creator, :class => "username d-inline-block text-truncate text-wrap", :dir => "auto" %></td>
<% end %>
<td><%= h truncate(block.reason) %></td>
<td><%= h block_status(block) %></td>
<td>
<% if block.revoker_id.nil? %>
<%= t(".not_revoked") %>
<% else %>
<%= link_to block.revoker.display_name, block.revoker, :class => "username d-inline-block text-truncate text-wrap", :dir => "auto" %>
<% end %>
</td>
<td><%= block_short_time_in_past(block.created_at) %></td>
<% if block.active? %>
<td><%= block_short_time_in_future(block.ends_at) %></td>
<% else %>
<td><%= block_short_time_in_past([block.ends_at, block.updated_at].max) %></td>
<% end %>
<td><%= h block_short_status(block) %></td>
<td><%= link_to t(".show"), block %></td>
<td><% if can?(:edit, block) %><%= link_to t(".edit"), edit_user_block_path(block) %><% end %></td>
</tr>

View file

@ -9,8 +9,9 @@
<th><%= t ".creator_name" %></th>
<% end %>
<th><%= t ".reason" %></th>
<th><%= t ".start" %></th>
<th><%= t ".end" %></th>
<th><%= t ".status" %></th>
<th><%= t ".revoker_name" %></th>
<th></th>
<th></th>
</tr>