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

show.html.haml « users « admin « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2a8b86c462e24dbde97b0b9ff597571fe4b811b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
- unless notice.nil?
  %p#notice= notice

%h2= @admin_user.name

%table.round-borders
  %tr
    %td
      %b
        Email:
    %td
      = @admin_user.email
  %tr
    %td
      %b
        Admin:
        %td= check_box_tag "admin", 1, @admin_user.admin, :disabled => :disabled
  %tr
    %td
      %b
        Projects limit:
    %td
      = @admin_user.projects_limit
  - unless @admin_user.skype.empty?
    %tr
      %td
        %b
          Skype:
      %td
        = @admin_user.skype
  - unless @admin_user.linkedin.empty?
    %tr
      %td
        %b
          Linkedin:
      %td
        = @admin_user.linkedin
  - unless @admin_user.twitter.empty?
    %tr
      %td
        %b
          Twitter:
      %td
        = @admin_user.twitter
  %tr
    %td{:colspan => 2}
      = link_to 'Edit', edit_admin_user_path(@admin_user), :class => "grey-button"

.span-14
  %h2 Projects

  %table.round-borders
    %tr
      %thead
        %th Name
        %th Added
        %th Web
        %th Git
        %th Admin
        %th
        %th

    - @admin_user.users_projects.each do |tm|
      - project = tm.project
      %tr
        %td= link_to project.name, admin_project_path(project)
        %td= time_ago_in_words(tm.updated_at) + " ago"
        %td= check_box_tag "read",   1, project.readers.include?(@admin_user), :disabled => :disabled
        %td= check_box_tag "commit", 1, project.writers.include?(@admin_usertm), :disabled => :disabled
        %td.span-2= check_box_tag "admin",  1, project.admins.include?(@admin_user), :disabled => :disabled
        %td= link_to 'Edit', edit_admin_team_member_path(tm)
        %td= link_to 'Cancel', admin_team_member_path(tm), :confirm => 'Are you sure?', :method => :delete

  = link_to 'Add To Another Project', new_admin_team_member_path(:team_member => {:user_id => @admin_user.id}), :class => "grey-button"