%= stylesheet_link_tag 'style' %>
<%= stylesheet_link_tag 'scaffold' %>
<%= javascript_include_tag :defaults %>
Users:
Login
Role
E-mail
Password
<% for user in @users -%>
<%= link_to( image_tag("icon-delete.gif") + 'Delete', { :action => 'destroy', :id => user.id },
{ :confirm => "Are you sure?", :method => :delete }) %>
<%= link_to_remote 'Modify',
:update => 'change',
:url => { :action => :modify, :id => user.id } %>
<%= user.login %>
<%= user.roles %>
<%= user.email %>
<%= link_to_remote 'Reset/Change',
:update => 'change',
:url => { :action => :reset_password, :id => user.id } %>
<% end -%>
<%= link_to 'Back to Main', :controller => 'main', :action => 'main' %>
<%= link_to 'Add an Account', :controller => 'account', :action => 'signup' %>