mirror of
https://github.com/meineerde/redmine.git
synced 2025-12-24 17:31:14 +00:00
Patch by Marius BALTEANU. git-svn-id: http://svn.redmine.org/redmine/trunk@15973 e93f8b46-1217-0410-a6f0-8f06a7374b81
9 lines
345 B
Plaintext
9 lines
345 B
Plaintext
<% if @users_by_role.any? %>
|
|
<div class="members box">
|
|
<h3 class="icon icon-group"><%=l(:label_member_plural)%></h3>
|
|
<% @users_by_role.keys.sort.each do |role| %>
|
|
<p><span class="label"><%= role %>:</span> <%= @users_by_role[role].sort.collect{|u| link_to_user u}.join(", ").html_safe %></p>
|
|
<% end %>
|
|
</div>
|
|
<% end %>
|