You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324
  1. <table id="saved-items" class="list">
  2. <thead>
  3. <tr>
  4. <th><%= t(:field_login) %></th>
  5. <th><%= t(:field_firstname) %></th>
  6. <th><%= t(:field_lastname) %></th>
  7. <th><%= t(:field_mail) %></th>
  8. <th><%= t(:field_admin) %></th>
  9. <th><%= t(:field_status) %></th>
  10. </tr>
  11. </thead>
  12. <tbody>
  13. <% saved_objects.each do |user| %>
  14. <tr>
  15. <td><%= avatar(user, :size => "14") %><%= link_to user.login, edit_user_path(user) %></td>
  16. <td><%= user.firstname %></td>
  17. <td><%= user.lastname %></td>
  18. <td><%= mail_to(user.mail) %></td>
  19. <td><%= checked_image user.admin? %></td>
  20. <td><%= l(("status_#{User::LABEL_BY_STATUS[user.status]}")) %>
  21. </tr>
  22. <% end %>
  23. </tbody>
  24. </table>