pagination on the top as well
[onlineproject.git] / online / app / views / admin / index.html.erb
blob4357ccca3ed0177c206f48473cfed068c99db6a8
1 <center>
3   <h3>Active Users</h3>
5   Total number of users: <%= @total_number %> users<br />
7   <% form_tag({:controller => "admin", :action => "index"}, :method => "get") do %>
8     <%= render :partial => "form" %>
9   <% end %>
10   
11    <br>
12     <br>
13     <b>Any status change  you send will effect the above <%= @total_number %> users (including those on other pages)</b>
15   <table>
16     <tr>
17       <% form_tag({:controller => "admin", :action => "status_change"}, :method => "post") do %>
18         <td>
19           <%= label_tag(:new_status, "Set status") %>
20         </td>
21         <td>
22           <%= text_area_tag(:new_status, nil,  :rows => 4, :cols => 45) %>
23         </td>
24         <td style="text-align:center;">
25            From: <%= text_field_tag(:from,'',:size => 6) %>, To: <%= text_field_tag(:to,'',:size => 6) %><br>
26        
27           <%= submit_tag("Change Status") %>
28           <% if params[:gender] %>
29             <% params.each do |k, v| %>
30               <input type='hidden' value='<%= v %>' name='<%= k %>' />
31             <% end %>
32           <% end %>
33         </td>
34       <% end %>
35     </tr>
36   </table>
37 </center>