##// END OF EJS Templates
Ability to sort issues by grouped column (#3511)....
Ability to sort issues by grouped column (#3511). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10765 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r8147:8677f069ec4b
r10543:9f148e098b07
Show More
_members_box.html.erb
8 lines | 299 B | text/plain | TextLexer
/ app / views / projects / _members_box.html.erb
Eric Davis
Refactor: extract Members Box to partial....
r3895 <% if @users_by_role.any? %>
Toshi MARUYAMA
replace tabs to spaces and remove trailing white-spaces at app/views/projects/_members_box.html.erb...
r7113 <div class="members box">
<h3><%=l(:label_member_plural)%></h3>
<p><% @users_by_role.keys.sort.each do |role| %>
Jean-Philippe Lang
html_safe for Rails3...
r8147 <%=h role %>: <%= @users_by_role[role].sort.collect{|u| link_to_user u}.join(", ").html_safe %><br />
Toshi MARUYAMA
replace tabs to spaces and remove trailing white-spaces at app/views/projects/_members_box.html.erb...
r7113 <% end %></p>
</div>
<% end %>