X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/daa2496024cf0bdc65e58eb6e2802784f411f68b..a48f2ac8563759bdf366951c214d022c0528e785:/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 c443dce2c..362cfd107 100644
--- a/app/views/user_blocks/_block.html.erb
+++ b/app/views/user_blocks/_block.html.erb
@@ -4,21 +4,11 @@
<% if show_user_name %>
<%= link_to h(block.user.display_name), :controller => 'user', :action => 'view', :display_name => block.user.display_name %> |
<% end %>
- <% if show_moderator_name %>
- <%= link_to h(block.moderator.display_name), :controller => 'user', :action => 'view', :display_name => block.moderator.display_name %> |
+ <% if show_creator_name %>
+ <%= link_to h(block.creator.display_name), :controller => 'user', :action => 'view', :display_name => block.creator.display_name %> |
<% end %>
- <%=h block.reason %> |
-
- <% if block.active? %>
- <% if block.needs_view? %>
- <%= t'user_block.partial.until_login' %>
- <% else %>
- <%= t('user_block.partial.time_future', :time => distance_of_time_in_words_to_now(block.end_at)) %>
- <% end %>
- <% else %>
- <%= t'user_block.partial.not_active' %>
- <% end %>
- |
+ <%=h truncate(block.reason) %> |
+ <%=h block_status(block) %> |
<% if block.revoker_id.nil? %>
<%= t('user_block.partial.not_revoked') %>
@@ -27,8 +17,8 @@
<% end %>
|
<%= link_to t('user_block.partial.show'), block %> |
- <% if @user and @user.id == block.moderator_id and block.active? %><%= link_to t('user_block.partial.edit'), edit_user_block_path(block) %><% end %> |
+ <% 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'), block, :confirm => t('user_block.partial.confirm'), :action => :revoke %><% end %> |
+ <% if block.active? %><%= link_to t('user_block.partial.revoke'), :controller => 'user_blocks', :action => 'revoke', :id => block.id %><% end %> |
<% end %>