Mercurial > hg > soundsoftware-site
view .svn/pristine/4b/4bca034528beb58f74c7ed4f1bd974d891aaa55f.svn-base @ 1539:22d57b0e0a77 live
OK, this script works now, but it should be using the API
author | Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
---|---|
date | Thu, 21 May 2015 17:31:06 +0100 |
parents | 261b3d9a4903 |
children |
line wrap: on
line source
<div class="splitcontentleft"> <% if @group.users.any? %> <table class="list users"> <thead><tr> <th><%= l(:label_user) %></th> <th style="width:15%"></th> </tr></thead> <tbody> <% @group.users.sort.each do |user| %> <tr id="user-<%= user.id %>" class="<%= cycle 'odd', 'even' %>"> <td class="user"><%= link_to_user user %></td> <td class="buttons"> <%= delete_link group_user_path(@group, :user_id => user), :remote => true %> </td> </tr> <% end %> </tbody> </table> <% else %> <p class="nodata"><%= l(:label_no_data) %></p> <% end %> </div> <div class="splitcontentright"> <%= form_for(@group, :remote => true, :url => group_users_path(@group), :html => {:method => :post}) do |f| %> <fieldset><legend><%=l(:label_user_new)%></legend> <p><%= label_tag "user_search", l(:label_user_search) %><%= text_field_tag 'user_search', nil %></p> <%= javascript_tag "observeSearchfield('user_search', null, '#{ escape_javascript autocomplete_for_user_group_path(@group) }')" %> <div id="users"> <%= render_principals_for_new_group_users(@group) %> </div> <p><%= submit_tag l(:button_add) %></p> </fieldset> <% end %> </div>