<%= link_to 'Register a new user', new_registration_path %>
<% if @users.size > 0 %>Name | Lab Memberships | <% UserProfile.index_columns.each do |c| %><%= c.humanize %> | <% end %>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) %> | <% end %><%= 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 %> |
There are currently no users.
<% end %>