1 <% @title = t(".title") %>
 
   3 <% content_for :head do %>
 
   4   <%= javascript_include_tag "user" %>
 
   7 <% content_for :heading do %>
 
   8   <h1><%= t(".heading") %></h1>
 
  11 <% unless @users.empty? %>
 
  13     <%= hidden_field_tag :status, params[:status] if params[:status] %>
 
  14     <%= hidden_field_tag :ip, params[:ip] if params[:ip] %>
 
  15     <%= hidden_field_tag :page, params[:page] if params[:page] %>
 
  16     <table id="user_list">
 
  20                 :page => @user_pages.current_page.number,
 
  21                 :first_item => @user_pages.current_page.first_item,
 
  22                 :last_item => @user_pages.current_page.last_item,
 
  23                 :items => @user_pages.item_count,
 
  24                 :count => @user_pages.current_page.last_item - @user_pages.current_page.first_item + 1 %>
 
  25           <% if @user_pages.page_count > 1 %>
 
  26           | <%= raw pagination_links_each(@user_pages, {}) { |n| link_to n, @params.merge(:page => n) } %>
 
  30           <%= check_box_tag "user_all", "1", false %>
 
  36     <div id="user_list_actions buttons">
 
  37       <%= submit_tag t(".confirm"), :name => "confirm" %>
 
  38       <%= submit_tag t(".hide"), :name => "hide" %>
 
  42   <p><%= t ".empty" %></p>