]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/user/list.html.erb
Make sure we show errors correctly when resetting a password
[rails.git] / app / views / user / list.html.erb
index fac7c442fd375d5152628b9aedda4ae0db226641..903a51c5bb6bbbb7d308db77247d9ac57f58a981 100644 (file)
@@ -1,9 +1,15 @@
 <% @title = t('user.list.title') %>
 
-<h1><%= t('user.list.heading') %></h1>
+<% content_for :head do %>
+  <%= javascript_include_tag "user" %>
+<% end %>
+
+<% content_for :heading do %>
+  <h1><%= t('user.list.heading') %></h1>
+<% 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] %>
               :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 %>
         </td>
         <td>
-          <%=
-            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 %>
         </td>
       </tr>
       <%= render :partial => 'user', :collection => @users %>
     </table>
 
-    <div id="user_list_actions">
+    <div id="user_list_actions buttons">
       <%= submit_tag t('user.list.confirm'), :name => "confirm" %>
       <%= submit_tag t('user.list.hide'), :name => "hide" %>
     </div>