<% content_for :head do %> <%= javascript_include_tag "application","authentication_global" %> <%= stylesheet_link_tag "authentication_global",:media => "all" %> <% end %>
<% @users.each do |u| %>
<%= u.first_name || u.email %> was added about
<% unless u.has_role? "superuser" %> <%= link_to image_tag("/assets/icons/delete.png" ,:alt=> "user_delete" ,:height => "16 px" ,:width => "16 px;"), mcms_destroy_user_path(:id => u.id) ,:confirm => "Are you sure u want to remove #{u.email} ?", :method => :delete %> <%= link_to image_tag("/assets/icons/application_edit.png" ,:alt=> "User_edit" ,:height => "16 px" ,:width => "16 px;"), "users/edit/#{u.id}" %> <% end %>
<% end %>

Quick tasks

Add new user