2012-05-24 08:23:25 +02:00
|
|
|
%table.admin-table
|
|
|
|
%thead
|
|
|
|
%tr
|
|
|
|
%th User
|
|
|
|
%th Permissions
|
|
|
|
%tbody
|
2012-03-28 09:46:51 +02:00
|
|
|
- @project.users_projects.each do |up|
|
|
|
|
= render(:partial => 'team_members/show', :locals => {:member => up})
|
|
|
|
|
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();
|
|
|
|
});
|
|
|
|
})
|