##// END OF EJS Templates
Send password reset email to the email used in lost password form (#4244)....
Send password reset email to the email used in lost password form (#4244). git-svn-id: http://svn.redmine.org/redmine/trunk@13888 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r13371:c27e917843a6
r13506:a3a8fee8adf8
Show More
_members_box.html.erb
8 lines | 322 B | text/plain | TextLexer
/ app / views / projects / _members_box.html.erb
<% if @users_by_role.any? %>
<div class="members box">
<h3><%=l(:label_member_plural)%></h3>
<% @users_by_role.keys.sort.each do |role| %>
<p><span class="label"><%=h role %>:</span> <%= @users_by_role[role].sort.collect{|u| link_to_user u}.join(", ").html_safe %></p>
<% end %>
</div>
<% end %>