X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/8d77891fd6796f32f665f7524e0ed8f098507f6d..ae5b7812ccfda66c59cb3ff57ce3b2c3e718f14b:/app/views/users/show.html.erb
diff --git a/app/views/users/show.html.erb b/app/views/users/show.html.erb
index 44319b384..c168972aa 100644
--- a/app/views/users/show.html.erb
+++ b/app/views/users/show.html.erb
@@ -35,14 +35,14 @@
<% if current_user.blocks.exists? %>
- <%= link_to t(".blocks on me"), user_blocks_on_path(current_user) %>
+ <%= link_to t(".blocks on me"), user_received_blocks_path(current_user) %>
<%= number_with_delimiter(current_user.blocks.active.size) %>
<% end %>
<% if can?(:create, UserBlock) and current_user.blocks_created.exists? %>
- <%= link_to t(".blocks by me"), user_blocks_by_path(current_user) %>
+ <%= link_to t(".blocks by me"), user_issued_blocks_path(current_user) %>
<%= number_with_delimiter(current_user.blocks_created.active.size) %>
<% end %>
@@ -93,21 +93,21 @@
<% if @user.blocks.exists? %>
- <%= link_to t(".block_history"), user_blocks_on_path(@user) %>
+ <%= link_to t(".block_history"), user_received_blocks_path(@user) %>
<%= number_with_delimiter(@user.blocks.active.size) %>
<% end %>
<% if @user.moderator? and @user.blocks_created.exists? %>
- <%= link_to t(".moderator_history"), user_blocks_by_path(@user) %>
+ <%= link_to t(".moderator_history"), user_issued_blocks_path(@user) %>
<%= number_with_delimiter(@user.blocks_created.active.size) %>
<% end %>
- <% if can?(:revoke_all, UserBlock) and @user.blocks.active.exists? %>
+ <% if can?(:destroy, UserBlock) and @user.blocks.active.exists? %>
- <%= link_to t(".revoke_all_blocks"), revoke_all_user_blocks_path(@user) %>
+ <%= link_to t(".revoke_all_blocks"), edit_user_received_blocks_path(@user) %>
<% end %>
@@ -217,12 +217,12 @@
- <%= t ".email address" %>
- <%= @user.email %>
- <% unless @user.creation_ip.nil? -%>
+ <% unless @user.creation_address.nil? -%>
- <%= t ".created from" %>
- - <%= link_to @user.creation_ip, users_path(:ip => @user.creation_ip) %>
+ - <%= link_to @user.creation_address, users_list_path(:ip => @user.creation_address) %>
<% end -%>
- <%= t ".status" %>
- - <%= link_to @user.status.capitalize, users_path(:status => @user.status) %>
+ - <%= link_to @user.status.capitalize, users_list_path(:status => @user.status) %>
- <%= t ".spam score" %>
- <%= @user.spam_score %>