Mercurial > hg > soundsoftware-site
view .svn/pristine/ff/ffc943fa0f557878c4c148862ece79145e07982b.svn-base @ 1625:808a40a7cac7 live
Have a go at fixing #570 Can't delete downloadable file from version in project with no issue tracker
author | Chris Cannam |
---|---|
date | Thu, 07 Feb 2019 13:48:00 +0000 |
parents | dffacf8a6908 |
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>