gitlabhq/app/views/projects/_team.html.haml
2012-09-03 21:53:16 +03:00

17 lines
333 B
Plaintext

%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();
});
})