Mercurial > hg > soundsoftware-site
view app/views/users/_groups.html.erb @ 1195:7f94e4180a2f feature_564
Only show tags used more than once. Not sure about this one
author | Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
---|---|
date | Tue, 22 Jan 2013 17:11:01 +0000 |
parents | c6c2cbd0afee |
children | 433d4f72a19b |
line wrap: on
line source
<% form_for(:user, :url => { :action => 'update' }, :html => {:method => :put}) do %> <div class="box"> <% Group.all.sort.each do |group| %> <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 %>