2006-12-16 15:15:31 +03:00
|
|
|
<div class="contextual">
|
2007-01-08 22:21:59 +03:00
|
|
|
<%= link_to l(:label_user_new), {:action => 'add'}, :class => 'icon icon-add' %>
|
2006-12-16 15:15:31 +03:00
|
|
|
</div>
|
|
|
|
|
2006-07-29 23:54:22 +04:00
|
|
|
<h2><%=l(:label_user_plural)%></h2>
|
2007-03-12 20:59:02 +03:00
|
|
|
|
2007-03-18 23:44:33 +03:00
|
|
|
<% form_tag() do %>
|
|
|
|
<fieldset><legend><%= l(:label_filter_plural) %></legend>
|
|
|
|
<label><%= l(:field_status) %> :</label>
|
|
|
|
<%= select_tag 'status', status_options_for_select(@status), :class => "small", :onchange => "this.form.submit(); return false;" %>
|
|
|
|
<%= submit_tag l(:button_apply), :class => "small" %>
|
|
|
|
</fieldset>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
|
2007-03-12 20:59:02 +03:00
|
|
|
<table class="list">
|
2006-12-24 19:35:25 +03:00
|
|
|
<thead><tr>
|
2007-03-12 20:59:02 +03:00
|
|
|
<%= sort_header_tag('login', :caption => l(:field_login)) %>
|
|
|
|
<%= sort_header_tag('firstname', :caption => l(:field_firstname)) %>
|
|
|
|
<%= sort_header_tag('lastname', :caption => l(:field_lastname)) %>
|
|
|
|
<th><%=l(:field_mail)%></th>
|
|
|
|
<%= sort_header_tag('admin', :caption => l(:field_admin)) %>
|
|
|
|
<%= sort_header_tag('status', :caption => l(:field_status)) %>
|
|
|
|
<%= sort_header_tag('created_on', :caption => l(:field_created_on)) %>
|
|
|
|
<%= sort_header_tag('last_login_on', :caption => l(:field_last_login_on)) %>
|
|
|
|
<th></th>
|
2006-12-24 19:35:25 +03:00
|
|
|
</tr></thead>
|
|
|
|
<tbody>
|
2006-06-28 22:11:03 +04:00
|
|
|
<% for user in @users %>
|
2007-03-12 20:59:02 +03:00
|
|
|
<tr class="<%= cycle("odd", "even") %>">
|
|
|
|
<td><%= link_to user.login, :action => 'edit', :id => user %></td>
|
|
|
|
<td><%= user.firstname %></td>
|
|
|
|
<td><%= user.lastname %></td>
|
|
|
|
<td><%= user.mail %></td>
|
|
|
|
<td align="center"><%= image_tag 'true.png' if user.admin? %></td>
|
|
|
|
<td align="center"><%= image_tag 'locked.png' if user.locked? %><%= image_tag 'user_new.png' if user.registered? %></td>
|
|
|
|
<td align="center"><%= format_time(user.created_on) %></td>
|
|
|
|
<td align="center"><%= format_time(user.last_login_on) unless user.last_login_on.nil? %></td>
|
|
|
|
<td align="center">
|
|
|
|
<% form_tag({:action => 'edit', :id => user}) do %>
|
|
|
|
<% if user.locked? %>
|
|
|
|
<%= hidden_field_tag 'user[status]', User::STATUS_ACTIVE %>
|
|
|
|
<%= submit_tag l(:button_unlock), :class => "button-small" %>
|
2007-01-06 17:22:22 +03:00
|
|
|
<% elsif user.registered? %>
|
|
|
|
<%= hidden_field_tag 'user[status]', User::STATUS_ACTIVE %>
|
|
|
|
<%= submit_tag l(:button_activate), :class => "button-small" %>
|
2007-03-12 20:59:02 +03:00
|
|
|
<% else %>
|
|
|
|
<%= hidden_field_tag 'user[status]', User::STATUS_LOCKED %>
|
|
|
|
<%= submit_tag l(:button_lock), :class => "button-small" %>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
2006-06-28 22:11:03 +04:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<% end %>
|
2006-12-24 19:35:25 +03:00
|
|
|
</tbody>
|
2006-06-28 22:11:03 +04:00
|
|
|
</table>
|
2007-03-12 20:59:02 +03:00
|
|
|
|
2007-04-03 23:22:56 +04:00
|
|
|
<p><%= pagination_links_full @user_pages, :status => @status %>
|
2007-03-12 20:59:02 +03:00
|
|
|
[ <%= @user_pages.current.first_item %> - <%= @user_pages.current.last_item %> / <%= @user_count %> ]
|
2006-06-28 22:11:03 +04:00
|
|
|
</p>
|