X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/303e5d3eb99284ab4fa41be85f831333f2154b0d..a70898be6dde1e9e9f61f90f8dc9b2c18a6f9287:/app/views/user/list.html.erb diff --git a/app/views/user/list.html.erb b/app/views/user/list.html.erb index fac7c442f..903a51c5b 100644 --- a/app/views/user/list.html.erb +++ b/app/views/user/list.html.erb @@ -1,9 +1,15 @@ <% @title = t('user.list.title') %> -

<%= t('user.list.heading') %>

+<% content_for :head do %> + <%= javascript_include_tag "user" %> +<% end %> + +<% content_for :heading do %> +

<%= t('user.list.heading') %>

+<% end %> <% unless @users.empty? %> - <% form_tag do %> + <%= form_tag do %> <%= hidden_field_tag :status, params[:status] if params[:status] %> <%= hidden_field_tag :ip, params[:ip] if params[:ip] %> <%= hidden_field_tag :page, params[:page] if params[:page] %> @@ -18,23 +24,17 @@ :count => @user_pages.current_page.last_item - @user_pages.current_page.first_item + 1 %> <% if @user_pages.page_count > 1 %> - | <%= 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 %> - <%= - check_box_tag("user_all", "1", false, :onchange => update_page do |page| - @users.each do |user| - page << "$('user_#{user.id}').checked = $('user_all').checked;" - end - end) - %> + <%= check_box_tag "user_all", "1", false %> <%= render :partial => 'user', :collection => @users %> -
+
<%= submit_tag t('user.list.confirm'), :name => "confirm" %> <%= submit_tag t('user.list.hide'), :name => "hide" %>