Listing Users

<% for column in @content_columns %> <% end %> <% for user in @all_users %> <% for column in @content_columns %> <% end %> <% end %>
<%= column.human_name %>Actions
<%=h user.send(column.name) %>
    <%= link_if_authorized 'Show', {:action => 'show', :id => user}, :wrap_in => "li" %> <%= link_if_authorized 'Edit', {:action => 'edit_user', :id => user}, :wrap_in => "li" %> <% if authorized?(:action => 'delete_user') && (user.login != UserEngine.config(:admin_login)) %><%= button_to 'Destroy', :action => 'delete_user', :id => user %><% end %>
<%= link_if_authorized 'New User', :controller => "user", :action => 'new' %>