<% c1 = cycle('table0', 'table1') %>
<% if show_user_name %>
<%= link_to h(block.user.display_name), :controller => 'user', :action => 'view', :display_name => block.user.display_name %> |
<% end %>
<% if show_creator_name %>
<%= link_to h(block.creator.display_name), :controller => 'user', :action => 'view', :display_name => block.creator.display_name %> |
<% end %>
<%=h truncate(block.reason) %> |
<%=h block_status(block) %> |
<% if block.revoker_id.nil? %>
<%= t('user_block.partial.not_revoked') %>
<% else %>
<%= link_to h(block.revoker.display_name), :controller => 'user', :action => 'view', :display_name => block.revoker.display_name %>
<% end %>
|
<%= link_to t('user_block.partial.show'), block %> |
<% if @user and @user.id == block.creator_id and block.active? %><%= link_to t('user_block.partial.edit'), edit_user_block_path(block) %><% end %> |
<% if show_revoke_link %>
<% if block.active? %><%= link_to t('user_block.partial.revoke'), :controller => 'user_blocks', :action => 'revoke', :id => block.id %><% end %> |
<% end %>