gitlabhq/app/views/projects/_team.html.haml

17 lines
333 B
Plaintext
Raw Normal View History

2012-09-03 20:53:16 +02:00
%table
2012-05-24 08:23:25 +02:00
%thead
%tr
%th User
%th Permissions
%tbody
- @project.users_projects.each do |up|
= render(partial: 'team_members/show', locals: {member: up})
2011-10-08 23:36:38 +02:00
:javascript
$(function(){
$('.repo-access-select, .project-access-select').live("change", function() {
$(this.form).submit();
});
})