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