##// END OF EJS Templates
scm: git: backout r8840 (#8857, #9472)...
scm: git: backout r8840 (#8857, #9472) reduce saving heads times in fetching revisions. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9141 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r6926:c3c6e6f405ca
r9021:374c2aa70500
Show More
_groups.html.erb
9 lines | 366 B | text/plain | TextLexer
<% form_for(:user, :url => { :action => 'update' }, :html => {:method => :put}) 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 %>