2011-12-14 23:56:23 +04:00
|
|
|
# encoding: utf-8
|
|
|
|
#
|
2011-08-31 12:41:25 +04:00
|
|
|
# Redmine - project management software
|
2013-01-12 13:29:31 +04:00
|
|
|
# Copyright (C) 2006-2013 Jean-Philippe Lang
|
2007-03-12 20:59:02 +03:00
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
2011-08-31 12:41:25 +04:00
|
|
|
#
|
2007-03-12 20:59:02 +03:00
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
2011-08-31 12:41:25 +04:00
|
|
|
#
|
2007-03-12 20:59:02 +03:00
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
2006-06-28 22:11:03 +04:00
|
|
|
module MembersHelper
|
2013-01-18 21:57:16 +04:00
|
|
|
def render_principals_for_new_members(project)
|
2013-01-23 21:44:28 +04:00
|
|
|
scope = Principal.active.sorted.not_member_of(project).like(params[:q])
|
2013-01-18 21:57:16 +04:00
|
|
|
principal_count = scope.count
|
|
|
|
principal_pages = Redmine::Pagination::Paginator.new principal_count, 100, params['page']
|
|
|
|
principals = scope.offset(principal_pages.offset).limit(principal_pages.per_page).all
|
|
|
|
|
|
|
|
s = content_tag('div', principals_check_box_tags('membership[user_ids][]', principals), :id => 'principals')
|
|
|
|
|
|
|
|
links = pagination_links_full(principal_pages, principal_count, :per_page_links => false) {|text, parameters, options|
|
|
|
|
link_to text, autocomplete_project_memberships_path(project, parameters.merge(:q => params[:q], :format => 'js')), :remote => true
|
|
|
|
}
|
|
|
|
|
|
|
|
s + content_tag('p', links, :class => 'pagination')
|
|
|
|
end
|
2006-06-28 22:11:03 +04:00
|
|
|
end
|