<%#-- copyright OpenProject is a project management system. Copyright (C) 2012-2013 the OpenProject Foundation (OPF) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3. OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: Copyright (C) 2006-2013 Jean-Philippe Lang Copyright (C) 2010-2013 the ChiliProject Team 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. 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. 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. See doc/COPYRIGHT.rdoc for more details. ++#%> <%= javascript_include_tag "members_form.js" %> <%= error_messages_for 'member' %> <% roles = Role.find_all_givable # Check if there is at least one principal that can be added to the project principals_available = @project.possible_members("", 1) member_per_page = 20 @members = @project.member_principals.includes(:roles, :principal, :member_roles) .order(User.user_format_fields(Setting.user_format).map(&:to_s)) .page(params[:page]) .per_page(per_page_param) %>
<% if roles.any? && principals_available.any? %> <%= render :partial => "members/member_form", :locals => { :project => @project, :members => members, :roles => roles } %> <% end %>
<% if @members.any? %> <% authorized = authorize_for('members', 'update') %> <%= call_hook(:view_projects_settings_members_table_header, :project => @project) %> <% @members.each do |member| %> <% next if member.new_record? %> <% end %> <%= call_hook(:view_projects_settings_members_table_row, { :project => @project, :member => member}) %> <% end; reset_cycle %>
<%= User.model_name.human %> / <%= Group.model_name.human %> <%= l(:label_role_plural) %>
<%= link_to_user member.principal %> <%=h member.roles.sort.collect(&:to_s).join(', ') %> <% if authorized %> <%= form_for(member, :url => {:controller => '/members', :action => 'update', :id => member, :page => params[:page]}, :method => :put, :remote => true, :html => { :id => "member-#{member.id}-roles-form", :class => 'hol', :style => 'display:none' }) do |f| %>

<% roles.each do |role| %>
<% end %>

<%= hidden_field_tag 'member[role_ids][]', '' %>

<%= submit_tag l(:button_change), :class => "small" %> <%= link_to_function l(:button_cancel), "$('member-#{member.id}-roles').show(); $('member-#{member.id}-roles-form').hide(); return false;" %>

<% end %>
<%= link_to_function l(:button_edit), "$('member-#{member.id}-roles').hide(); $('member-#{member.id}-roles-form').show(); return false;", :class => 'icon icon-edit' %> <%= link_to(l(:button_delete), {:controller => '/members', :action => 'destroy', :id => member, :page => params[:page]}, :method => :delete, :remote => true, :confirm => ((!User.current.admin? && member.include?(User.current)) ? l(:text_own_membership_delete_confirmation) : nil), :title => l(:button_delete), :class => 'icon icon-del') if member.deletable? %>
<%= pagination_links_full @members, params: { tab: 'members' }.merge(@pagination_url_options || {}) %> <% else %>

<%= l(:label_no_data) %>

<% end %>