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
|
|
|
|
2008-02-03 22:53:52 +03:00
|
|
|
<% form_tag({}, :method => :get) do %>
|
2007-03-18 23:44:33 +03:00
|
|
|
<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;" %>
|
|
|
|
</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)) %>
|
2008-02-05 20:28:02 +03:00
|
|
|
<%= sort_header_tag('mail', :caption => l(:field_mail)) %>
|
|
|
|
<%= sort_header_tag('admin', :caption => l(:field_admin), :default_order => 'desc') %>
|
|
|
|
<%= sort_header_tag('created_on', :caption => l(:field_created_on), :default_order => 'desc') %>
|
|
|
|
<%= sort_header_tag('last_login_on', :caption => l(:field_last_login_on), :default_order => 'desc') %>
|
2007-03-12 20:59:02 +03:00
|
|
|
<th></th>
|
2006-12-24 19:35:25 +03:00
|
|
|
</tr></thead>
|
|
|
|
<tbody>
|
2008-02-03 22:53:52 +03:00
|
|
|
<% for user in @users -%>
|
|
|
|
<tr class="user <%= cycle("odd", "even") %> <%= %w(anon active registered locked)[user.status] %>">
|
|
|
|
<td class="username"><%= link_to user.login, :action => 'edit', :id => user %></td>
|
|
|
|
<td class="firstname"><%= user.firstname %></td>
|
|
|
|
<td class="lastname"><%= user.lastname %></td>
|
|
|
|
<td class="email"><%= user.mail %></td>
|
|
|
|
<td align="center"><%= image_tag('true.png') if user.admin? %></td>
|
|
|
|
<td class="created_on" align="center"><%= format_time(user.created_on) %></td>
|
|
|
|
<td class="last_login_on" align="center"><%= format_time(user.last_login_on) unless user.last_login_on.nil? %></td>
|
2008-04-06 17:15:09 +04:00
|
|
|
<td><small><%= change_status_link(user) %></small></td>
|
2006-06-28 22:11:03 +04:00
|
|
|
</tr>
|
2008-02-03 22:53:52 +03:00
|
|
|
<% 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-12-29 14:36:30 +03:00
|
|
|
<p class="pagination"><%= pagination_links_full @user_pages, @user_count %></p>
|
2007-12-07 21:42:40 +03:00
|
|
|
|
2008-01-03 01:41:53 +03:00
|
|
|
<% html_title(l(:label_user_plural)) -%>
|