##// END OF EJS Templates
Fixed: repository: mercurial: sort changesets by revision (#3449, #3567)....
Fixed: repository: mercurial: sort changesets by revision (#3449, #3567). In DVCS, changesets are not in date order. Because Mercurial backend inserts changesets from eariest, 'ORDER BY id' means 'order by revision number'. Contributed by Yuya Nishihara. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4611 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r4116:86ba692bf531
r4491:2ae2d3ef834c
Show More
_groups.rhtml
9 lines | 366 B | text/html+ruby | RhtmlLexer
Eric Davis
Refactor: split UsersController#edit into #edit and #update...
r4116 <% form_for(:user, :url => { :action => 'update' }, :html => {:method => :put}) do %>
Jean-Philippe Lang
User groups branch merged....
r2755 <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 %>