%#-- 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_FORMATS_STRUCTURE[Setting.user_format].map{|attr| attr.to_s}.join(", ")) .page(params[:page]) .per_page(per_page_param) %>
<%= User.model_name.human %> / <%= Group.model_name.human %> | <%= l(:label_role_plural) %> | <%= call_hook(:view_projects_settings_members_table_header, :project => @project) %> |
---|---|---|
<%= 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| %>
<%= 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? %> | <% end %> <%= call_hook(:view_projects_settings_members_table_row, { :project => @project, :member => member}) %>
<%= l(:label_no_data) %>
<% end %>