Mercurial > hg > soundsoftware-site
view .svn/pristine/0f/0f55ca10803bce4cf5a650e17d0e04f01a9b964d.svn-base @ 1237:1d5451bf82d7 redmine-2.2-integration
Added missing route to auto_completes#project_tags (AutoCompletes controller patched in redmine tags plugin)
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Tue, 26 Mar 2013 15:11:27 +0000 |
parents | cbb26bc654de |
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"> <%= link_to_remote l(:button_delete), { :url => group_user_path(@group, :user_id => user), :method => :delete }, :class => 'icon icon-del' %> </td> </tr> <% end %> </tbody> </table> <% else %> <p class="nodata"><%= l(:label_no_data) %></p> <% end %> </div> <div class="splitcontentright"> <% users = User.active.not_in_group(@group).all(:limit => 100) %> <% if users.any? %> <% remote_form_for(@group, :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> <%= observe_field(:user_search, :frequency => 0.5, :update => :users, :url => autocomplete_for_user_group_path(@group), :method => :get, :with => 'q') %> <div id="users"> <%= principals_check_box_tags 'user_ids[]', users %> </div> <p><%= submit_tag l(:button_add) %></p> </fieldset> <% end %> <% end %> </div>