openstreetmap-website/app/views/user_blocks/_block.html.erb
Andy Allan b8c1bbb4f8 Remove unnecessary h() calls on model attributes
These were necessary in the rails 2.x era, but not now.
2020-03-18 14:33:30 +01:00

22 lines
885 B
Text

<tr>
<% if show_user_name %>
<td><%= link_to block.user.display_name, user_path(block.user) %></td>
<% end %>
<% if show_creator_name %>
<td><%= link_to block.creator.display_name, user_path(block.creator) %></td>
<% end %>
<td><%= h truncate(block.reason) %></td>
<td><%= h block_status(block) %></td>
<td>
<% if block.revoker_id.nil? %>
<%= t(".not_revoked") %>
<% else %>
<%= link_to block.revoker.display_name, user_path(block.revoker) %>
<% end %>
</td>
<td><%= link_to t(".show"), block %></td>
<td><% if current_user and current_user.id == block.creator_id and block.active? %><%= link_to t(".edit"), edit_user_block_path(block) %><% end %></td>
<% if show_revoke_link %>
<td><% if block.active? %><%= link_to t(".revoke"), :controller => "user_blocks", :action => "revoke", :id => block.id %><% end %></td>
<% end %>
</tr>