2013-01-26 09:21:41 +00:00
|
|
|
<h1>User Certifications</h1>
|
2013-01-25 10:50:53 +00:00
|
|
|
|
2013-01-25 16:28:32 +00:00
|
|
|
<%= link_to 'New User Certification', new_user_certification_path %>
|
|
|
|
|
2013-01-25 18:11:39 +00:00
|
|
|
<% @grouped_user_certs.sort.each do |cert, user_certifications| %>
|
2013-01-26 03:31:23 +00:00
|
|
|
<dl class="collapsible">
|
2013-01-25 18:11:39 +00:00
|
|
|
<dt><%= cert.name %></dt>
|
2013-08-27 05:05:53 +00:00
|
|
|
<% user_certifications.sort{|a,b| a.user_name <=> b.user_name}.each do |user_certification| %>
|
2013-01-25 13:01:02 +00:00
|
|
|
<dd>
|
2013-08-27 05:05:53 +00:00
|
|
|
<%= link_to user_certification.user_name, user_certification %>
|
2013-01-25 13:01:02 +00:00
|
|
|
</dd>
|
|
|
|
<% end %>
|
2013-01-26 03:31:23 +00:00
|
|
|
</dl>
|
2013-01-25 10:50:53 +00:00
|
|
|
<% end %>
|
|
|
|
|