X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/d115a1a7d7c7660696328ac3b10e159156d34489..563871c5a9a8140522b0c569df5c91a38528c8ce:/app/views/user_blocks/_block.html.erb
diff --git a/app/views/user_blocks/_block.html.erb b/app/views/user_blocks/_block.html.erb
index 50fe74e4c..1eb38f93f 100644
--- a/app/views/user_blocks/_block.html.erb
+++ b/app/views/user_blocks/_block.html.erb
@@ -1,9 +1,9 @@
- <% if show_user_name %>
- <%= link_to block.user.display_name, block.user %> |
+ <% 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 %> |
+ <% 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) %> |
@@ -15,8 +15,5 @@
<% end %>
<%= link_to t(".show"), block %> |
- <% if current_user and current_user.id == block.creator_id and block.active? %><%= link_to t(".edit"), edit_user_block_path(block) %><% end %> |
- <% if show_revoke_link %>
- <% if block.active? %><%= link_to t(".revoke"), revoke_user_block_path(block) %><% end %> |
- <% end %>
+ <% if can?(:edit, block) %><%= link_to t(".edit"), edit_user_block_path(block) %><% end %> |