17 lines
333 B
Plaintext
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();
|
|
});
|
|
})
|