Mercurial > hg > soundsoftware-site
view .svn/pristine/ff/ffc943fa0f557878c4c148862ece79145e07982b.svn-base @ 1517:dffacf8a6908 redmine-2.5
Update to Redmine SVN revision 13367 on 2.5-stable branch
author | Chris Cannam |
---|---|
date | Tue, 09 Sep 2014 09:29:00 +0100 |
parents | |
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="name"><%= 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>