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 / app / views / users / _groups.html.erb @ 1340:6aea63dac36e

History | View | Annotate | Download (367 Bytes)

1
<%= 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 %>