X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/92ca4069957666065194e0b63de5b46261b8a21d..9e807aeca0105497ced7e75bb434a88f41865204:/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 b309e9e11..5444bdd5b 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, user_path(block.user) %> |
+ <%= 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, user_path(block.creator) %> |
+ <%= 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) %> |
@@ -11,12 +11,13 @@
<% if block.revoker_id.nil? %>
<%= t(".not_revoked") %>
<% else %>
- <%= link_to block.revoker.display_name, user_path(block.revoker) %>
+ <%= link_to block.revoker.display_name, block.revoker %>
<% 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 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 show_revoke_link %>
- <% if block.active? %><%= link_to t(".revoke"), :controller => "user_blocks", :action => "revoke", :id => block.id %><% end %> |
+ <% if block.active? %><%= link_to t(".revoke"), revoke_user_block_path(block) %><% end %> |
<% end %>