X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/3d7eb387a7c3573f1a1d17df00adcaa1fb9b9fa5..9f84c6f46e14eb64f985d2b67a331957f648380a:/app/views/user/list.html.erb
diff --git a/app/views/user/list.html.erb b/app/views/user/list.html.erb
index 240a7590d..903a51c5b 100644
--- a/app/views/user/list.html.erb
+++ b/app/views/user/list.html.erb
@@ -1,5 +1,9 @@
<% @title = t('user.list.title') %>
+<% content_for :head do %>
+ <%= javascript_include_tag "user" %>
+<% end %>
+
<% content_for :heading do %>
<%= t('user.list.heading') %>
<% end %>
@@ -20,7 +24,7 @@
:count => @user_pages.current_page.last_item - @user_pages.current_page.first_item + 1
%>
<% if @user_pages.page_count > 1 %>
- | <%= raw pagination_links_each(@user_pages, {}) { |n| link_to n, params.merge(:page => n) } %>
+ | <%= raw pagination_links_each(@user_pages, {}) { |n| link_to n, @params.merge(:page => n) } %>
<% end %>
@@ -30,16 +34,10 @@
<%= render :partial => 'user', :collection => @users %>
-
+
<%= submit_tag t('user.list.confirm'), :name => "confirm" %>
<%= submit_tag t('user.list.hide'), :name => "hide" %>
-
-
<% end %>
<% else %>
<%= t "user.list.empty" %>
|