To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / app / views / users / _groups.html.erb @ 912:5e80956cc792
History | View | Annotate | Download (366 Bytes)
| 1 | 37:94944d00e43c | chris | <% form_for(:user, :url => { :action => 'update' }, :html => {:method => :put}) do %>
|
|---|---|---|---|
| 2 | 0:513646585e45 | Chris | <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 %> |