2012-05-24 02:23:25 -04:00
|
|
|
%table.admin-table
|
|
|
|
%thead
|
|
|
|
%tr
|
|
|
|
%th User
|
|
|
|
%th Permissions
|
|
|
|
%tbody
|
2012-03-28 03:46:51 -04:00
|
|
|
- @project.users_projects.each do |up|
|
2012-08-10 18:07:50 -04:00
|
|
|
= render(partial: 'team_members/show', locals: {member: up})
|
2012-03-28 03:46:51 -04:00
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
|
|
|
|
:javascript
|
2011-12-06 18:27:07 -05:00
|
|
|
$(function(){
|
2012-06-03 18:37:27 -04:00
|
|
|
$('.repo-access-select, .project-access-select').live("change", function() {
|
2011-12-06 18:27:07 -05:00
|
|
|
$(this.form).submit();
|
|
|
|
});
|
|
|
|
})
|