<%= t('users.total_users_count', :count => "#{@total_users}").html_safe %>
| <%= User.human_attribute_name('login') %> | <%= User.human_attribute_name('display_name') %> | <%= User.human_attribute_name('email') %> | <%= User.human_attribute_name('auth_type') %> | <%= User.human_attribute_name('open_id_url') %> | <%= t('users.total_actions') %> | <%= t('users.total_contexts') %> | <%= t('users.total_projects') %> | <%= t('users.total_notes') %> | <%= User.human_attribute_name('created_at') %> | <%= User.human_attribute_name('last_login_at') %> | |
|---|---|---|---|---|---|---|---|---|---|---|---|
| <%=h user.login %> | <%=h user.display_name %> | <%=h user.email %> | <%= h user.auth_type %> | <%= h user.open_id_url || '-' %> | <%= h user.todos.size %> | <%= h user.contexts.size %> | <%= h user.projects.size %> | <%= h user.notes.size %> | <%= format_date(user.created_at) %> | <%= format_date(user.last_login_at) %> | <%= !user.is_admin? ? remote_delete_user(user) : " ".html_safe %> |
<%= will_paginate @users %>
<%= link_to t('users.signup_new_user'), signup_path %>