Listing Users

<%= link_to 'Register a new user', new_registration_path %>

<% if @users.size > 0 %> <% UserProfile.index_columns.each do |c| %> <% end %> <% @users.each do |user| %> <% profile = user.user_profile %> <% end %> <% end %>
Name Lab Memberships<%= c.humanize %>Edit Destroy
<%=h user.lastname %>, <%=h user.firstname%> <%= link_to 'Lab Memberships', user_lab_memberships_path(user) %> <% UserProfile.index_columns.each do |c| %> <%=h profile.send(c) %><%= link_to 'Edit', edit_user_path(user) %> <%= link_to 'Destroy', user, :confirm => "Are you sure you want to destroy " + "the user #{user.fullname}", :method => :delete %>
<% else %>

There are currently no users.

<% end %>