##// END OF EJS Templates
New strings to localization (#5225)...
New strings to localization (#5225) * error_can_not_delete_custom_field: Unable to delete custom field * error_unable_to_connect: Unable to connect ({{value}}) * error_can_not_remove_role: This role is in use and can not be deleted. * error_can_not_delete_tracker: This tracker contains issues and can't be deleted. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3627 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r3046:72ceefd36eab
r3513:eb80b79c2666
Show More
_groups.rhtml
9 lines | 336 B | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
User groups branch merged....
r2755 <% form_for(:user, :url => { :action => 'edit' }) do %>
<div class="box">
Jean-Philippe Lang
Sort groups on user groups setting (#4389)....
r3046 <% Group.all.sort.each do |group| %>
Jean-Philippe Lang
User groups branch merged....
r2755 <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 %>