]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/user_blocks/_block.html.erb
Set dir=auto on usernames in block lists
[rails.git] / app / views / user_blocks / _block.html.erb
index 461dc7a8d9e8ef6c19b34a80ce1a05900c17455f..8ae1408c609babe4efe469118e6ba09130342235 100644 (file)
@@ -1,9 +1,9 @@
 <tr>
-  <% if show_user_name %>
-  <td><%= link_to block.user.display_name, block.user %></td>
+  <% if @show_user_name %>
+  <td><%= link_to block.user.display_name, block.user, :class => "username d-inline-block text-truncate text-wrap", :dir => "auto" %></td>
   <% end %>
-  <% if show_creator_name %>
-  <td><%= link_to block.creator.display_name, block.creator %></td>
+  <% if @show_creator_name %>
+  <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>
     <% if block.revoker_id.nil? %>
       <%= t(".not_revoked") %>
     <% else %>
-      <%= link_to block.revoker.display_name, block.revoker %>
+      <%= link_to block.revoker.display_name, block.revoker, :class => "username d-inline-block text-truncate text-wrap", :dir => "auto" %>
     <% end %>
   </td>
   <td><%= link_to t(".show"), block %></td>
-  <td><% if current_user and current_user.id == block.creator_id %><%= link_to t(".edit"), edit_user_block_path(block) %><% end %></td>
-  <% if show_revoke_link %>
-  <td><% if block.active? %><%= link_to t(".revoke"), revoke_user_block_path(block) %><% end %></td>
-  <% end %>
+  <td><% if can?(:edit, block) %><%= link_to t(".edit"), edit_user_block_path(block) %><% end %></td>
 </tr>