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 / .svn / text-base / _groups.rhtml.svn-base @ 441:cbce1fd3b1b7
History | View | Annotate | Download (366 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 %> |