29 lines
927 B
Text
29 lines
927 B
Text
<turbo-frame id="pagination" target="_top">
|
|
<table id="block_list" class="table table-borderless table-striped table-sm">
|
|
<thead>
|
|
<tr>
|
|
<% if @show_user_name %>
|
|
<th><%= t ".display_name" %></th>
|
|
<% end %>
|
|
<% if @show_creator_name %>
|
|
<th><%= t ".creator_name" %></th>
|
|
<% end %>
|
|
<th><%= t ".reason" %></th>
|
|
<th><%= t ".status" %></th>
|
|
<th><%= t ".revoker_name" %></th>
|
|
<th></th>
|
|
<th></th>
|
|
<% if can?(:revoke, UserBlock) %>
|
|
<th></th>
|
|
<% end %>
|
|
</tr>
|
|
</thead>
|
|
<%= render :partial => "block", :collection => @user_blocks %>
|
|
</table>
|
|
|
|
<%= render "shared/pagination",
|
|
:newer_key => "user_blocks.blocks.newer",
|
|
:older_key => "user_blocks.blocks.older",
|
|
:newer_id => @newer_user_blocks_id,
|
|
:older_id => @older_user_blocks_id %>
|
|
</turbo-frame>
|