<% if @show_user_name %>
<%= link_to block.user.display_name, block.user, :class => "username d-inline-block text-truncate text-wrap" %> |
<% end %>
<% if @show_creator_name %>
<%= link_to block.creator.display_name, block.creator, :class => "username d-inline-block text-truncate text-wrap" %> |
<% end %>
<%= h truncate(block.reason) %> |
<%= h block_status(block) %> |
<% if block.revoker_id.nil? %>
<%= t(".not_revoked") %>
<% else %>
<%= link_to block.revoker.display_name, block.revoker %>
<% end %>
|
<%= link_to t(".show"), block %> |
<% if current_user && (current_user.id == block.creator_id ||
current_user.id == block.revoker_id) %><%= link_to t(".edit"), edit_user_block_path(block) %><% end %> |
<% if can?(:revoke, UserBlock) %>
<% if block.active? %><%= link_to t(".revoke"), revoke_user_block_path(block) %><% end %> |
<% end %>