##// END OF EJS Templates
Spanish translation updated by Jesus Gutierrez de la Vega (#18156)...
Spanish translation updated by Jesus Gutierrez de la Vega (#18156) git-svn-id: http://svn.redmine.org/redmine/trunk@13478 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r13053:7e7ac5340a28
r13096:3e70e5c563c8
Show More
_groups.html.erb
9 lines | 383 B | text/plain | TextLexer
<%= form_for(:user, :url => { :action => 'update' }, :html => {:method => :put}) do %>
<div class="box">
<% Group.givable.sort.each do |group| %>
<label><%= check_box_tag 'user[group_ids][]', group.id, @user.groups.include?(group), :id => nil %> <%=h group %></label><br />
<% end %>
<%= hidden_field_tag 'user[group_ids][]', '' %>
</div>
<%= submit_tag l(:button_save) %>
<% end %>