##// END OF EJS Templates
Fixed: issue summary counts should link to the issue list without subprojects (#4525)....
Fixed: issue summary counts should link to the issue list without subprojects (#4525). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3283 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r3046:72ceefd36eab
r3169:518779d96d81
Show More
_groups.rhtml
9 lines | 336 B | text/html+ruby | RhtmlLexer
<% form_for(:user, :url => { :action => 'edit' }) do %>
<div class="box">
<% Group.all.sort.each do |group| %>
<label><%= check_box_tag 'user[group_ids][]', group.id, @user.groups.include?(group) %> <%=h group %></label><br />
<% end %>
<%= hidden_field_tag 'user[group_ids][]', '' %>
</div>
<%= submit_tag l(:button_save) %>
<% end %>