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