Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/projects/_team.html.haml')
-rw-r--r--app/views/projects/_team.html.haml18
1 files changed, 18 insertions, 0 deletions
diff --git a/app/views/projects/_team.html.haml b/app/views/projects/_team.html.haml
new file mode 100644
index 00000000000..bb9063369c3
--- /dev/null
+++ b/app/views/projects/_team.html.haml
@@ -0,0 +1,18 @@
+- if can? current_user, :admin_team_member, @project
+ %div#new-member-holder
+ = link_to "Add new", new_project_team_member_path(@project), :remote => true, :class => "lbutton vm"
+%table.round-borders#team-table
+ %tr
+ %th Name
+ %th Email
+ %th Web
+ %th Git
+ %th Admin
+ - if can? current_user, :admin_team_member, @project
+ %th Actions
+ - @project.users_projects.each do |up|
+ = render(:partial => 'team_members/show', :locals => {:member => up})
+
+:javascript
+ $('.delete-team-member').live('ajax:success', function() {
+ $(this).closest('tr').fadeOut(); });