Manage users

You have a total of <%= @total_users %> users

<% for user in @users %> id="user-<%= user.id %>"> <% end %>
Login Full name Authorization type Open ID URL Total actions Total contexts Total projects Total notes  
<%=h user.login %> <%=h user.last_name? ? user.display_name : '-' %> <%= 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 %> <%= !user.is_admin? ? link_to_remote( image_tag("blank.png", :title =>"Destroy user", :class=>"delete_item"), {:url => user_path(user), :method => :delete, :confirm => "Warning: this will delete user \'#{user.login}\', all their actions, contexts, project and notes. Are you sure that you want to continue?" }, { :class => "icon" } ) : " " %>

<%= will_paginate @users %>

<%= link_to 'Signup new user', signup_path %>