gitlabhq/app/views/projects/_team.html.haml
2012-06-04 01:37:27 +03:00

17 lines
354 B
Plaintext

%table.admin-table
%thead
%tr
%th User
%th Permissions
%tbody
- @project.users_projects.each do |up|
= render(:partial => 'team_members/show', :locals => {:member => up})
:javascript
$(function(){
$('.repo-access-select, .project-access-select').live("change", function() {
$(this.form).submit();
});
})