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

17 lines
355 B
Plaintext
Raw Normal View History

2012-05-24 08:23:25 +02:00
%table.admin-table
%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();
});
})