##// END OF EJS Templates
remove trailing white-spaces from app/views/issues/_attributes.html.erb...
remove trailing white-spaces from app/views/issues/_attributes.html.erb git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7313 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r6926:c3c6e6f405ca
r7193:60d80e9d314e
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 %>