1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-26 02:11:15 +00:00
redmine/app/views/projects/_members_box.html.erb
2024-09-05 20:06:04 +00:00

9 lines
446 B
Plaintext

<% if @principals_by_role.any? %>
<div class="members box">
<h3 class="icon icon-group"><%= icon_with_label('group', l(:label_member_plural)) %></h3>
<% @principals_by_role.keys.sort.each do |role| %>
<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>
<% end %>
</div>
<% end %>