diff --git a/app/views/moderator/ip_addrs/_ip_listing.erb b/app/views/moderator/ip_addrs/_ip_listing.erb index 2529a33bd..dacc6e677 100644 --- a/app/views/moderator/ip_addrs/_ip_listing.erb +++ b/app/views/moderator/ip_addrs/_ip_listing.erb @@ -1,4 +1,4 @@ -<%= link_to "Perform another search for accounts associated with these IP addresses", moderator_ip_addrs_path(:search => {:ip_addr => @results.map{|k, count| k}.join(",")}) %> +

<%= link_to "Search for users with these IP addresses", moderator_ip_addrs_path(:search => {:ip_addr => @results.map {|k, count| k}.join(",")}) %>

@@ -10,7 +10,7 @@ <% @results.each do |ip_address, count| %> - + <% end %> diff --git a/app/views/moderator/ip_addrs/_user_listing.erb b/app/views/moderator/ip_addrs/_user_listing.erb index 0586457fe..b96c0e18e 100644 --- a/app/views/moderator/ip_addrs/_user_listing.erb +++ b/app/views/moderator/ip_addrs/_user_listing.erb @@ -1,18 +1,16 @@ -<%= link_to "Perform another search for IP addresses associated with these accounts", moderator_ip_addrs_path(:search => {:user_id => @results.map{|k, count| k}.join(",")}) %> +

<%= link_to "Search for IP addresses with these users", moderator_ip_addrs_path(:search => {:user_id => @results.map{|k, count| k}.join(",")}) %>

<%= ip_address %><%= link_to moderator_ip_addrs_path(:search => {:ip_addr => ip_address}) %> <%= count %>
- <% @results.each do |user_id, count| %> - - + <% end %>
UserUser ID Number of Occurrences
<%= link_to_user User.find(user_id) %><%= user_id %><%= link_to User.id_to_name(user_id), moderator_ip_addrs_path(:search => {:user_id => user_id}) %> <%= count %>