Open-Source-Access-Control-.../app/views/user_certifications/index.html.erb

16 lines
488 B
Plaintext
Raw Normal View History

<h1>User Certifications</h1>
2013-08-29 08:38:40 +00:00
<%= link_to 'New User Certification', new_user_certification_path if can? :create, UserCertification %>
2013-01-25 16:28:32 +00:00
2013-01-25 18:11:39 +00:00
<% @grouped_user_certs.sort.each do |cert, user_certifications| %>
<dl class="collapsible">
2013-01-25 18:11:39 +00:00
<dt><%= cert.name %></dt>
<% user_certifications.sort{|a,b| a.user_name <=> b.user_name}.each do |user_certification| %>
<dd>
<%= link_to user_certification.user_name, user_certification %>
</dd>
<% end %>
</dl>
<% end %>