BigW Consortium Gitlab

show.html.haml 2.17 KB
Newer Older
1 2 3
%h3
  = @admin_project.name
  = link_to 'Edit', edit_admin_project_path(@admin_project), :class => "btn right small"
gitlabhq committed
4

5 6
%br
%table.zebra-striped.table-bordered
7 8 9 10 11
  %tr
    %td
      %b
        Name:
    %td
12
      = @admin_project.name
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
  %tr
    %td
      %b
        Code:
    %td
      = @admin_project.code
  %tr
    %td
      %b
        Path:
    %td
      = @admin_project.path
  %tr
    %td
      %b
        Description:
    %td
      = @admin_project.description
31 32 33 34 35 36
  %tr
    %td
      %b
        Post Receive File:
    %td
      = check_box_tag :post_receive_file, 1, @admin_project.has_post_receive_file?, :disabled => true
37 38 39 40 41 42 43 44 45 46 47 48 49
%br
%h3
  Team
  %small
    (#{@admin_project.users_projects.count})
%br
%table.zebra-striped.table-bordered
  %thead
    %tr
      %th Name
      %th Project Access
      %th Repository Access
      %th
50

51 52 53 54 55 56 57
  - @admin_project.users_projects.each do |tm|
    %tr
      %td
        = link_to tm.user_name, admin_user_path(tm.user)
      %td= select_tag :tm_project_access, options_for_select(Project.access_options, tm.project_access), :class => "medium project-access-select", :disabled => :disabled
      %td= link_to 'Edit Access', edit_admin_team_member_path(tm), :class => "btn small"
      %td= link_to 'Remove from team', admin_team_member_path(tm), :confirm => 'Are you sure?', :method => :delete, :class => "btn danger small"
gitlabhq committed
58

59 60 61
%br
%h3 Add new team member
%br
62
= form_tag team_update_admin_project_path(@admin_project), :class => "bulk_import", :method => :put  do
63
  %table.zebra-striped.table-bordered
64 65
    %thead
      %tr
66 67
        %th Users
        %th Project Access:
68

69 70 71
    %tr
      %td= select_tag :user_ids, options_from_collection_for_select(@users , :id, :name),  :multiple => true
      %td= select_tag :project_access, options_for_select(Project.access_options), :class => "project-access-select"
72

73 74 75
    %tr
      %td= submit_tag 'Add', :class => "btn primary"
      %td
76
        Read more about project permissions
77
        %strong= link_to "here", help_permissions_path, :class => "vlink"
gitlabhq committed
78

79 80
:css
  form select {
81 82 83 84 85 86 87
    width:150px;
  }

  #user_ids {
    width:300px;
  }

88
:javascript
89 90 91
  $('select#user_ids').chosen();
  $('select#repo_access').chosen();
  $('select#project_access').chosen();