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