To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / .svn / pristine / 11 / 1155c5733fc69fa605b0b34e8b29755f3beb4693.svn-base @ 1297:0a574315af3e

History | View | Annotate | Download (367 Bytes)

1 1296:038ba2d95de8 Chris
<%= form_for(:user, :url => { :action => 'update' }, :html => {:method => :put}) do %>
2
<div class="box">
3
<% Group.all.sort.each do |group| %>
4
<label><%= check_box_tag 'user[group_ids][]', group.id, @user.groups.include?(group) %> <%=h group %></label><br />
5
<% end %>
6
<%= hidden_field_tag 'user[group_ids][]', '' %>
7
</div>
8
<%= submit_tag l(:button_save) %>
9
<% end %>