You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_members_box.html.erb 418B

12345678
  1. <% if @principals_by_role.any? %>
  2. <div class="members box">
  3. <h3 class="icon icon-group"><%=l(:label_member_plural)%></h3>
  4. <% @principals_by_role.keys.sort.each do |role| %>
  5. <p><span class="label"><%= role %>:</span> <%= @principals_by_role[role].sort.collect{|p| link_to_principal(p, :class => p.is_a?(Group) ? 'icon icon-group' : nil)}.join(", ").html_safe %></p>
  6. <% end %>
  7. </div>
  8. <% end %>