summaryrefslogtreecommitdiff
path: root/app/views/admin/users/show.html.haml
blob: eaa7ebc3f49724e0337f3b1fa62ed22b433df8eb (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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
%h3.page_title
  User:
  = @user.name
  - if @user.blocked?
    %span.cred (Blocked)
  - if @user.admin
    %span.cred (Admin)

  .pull-right
    = link_to edit_admin_user_path(@user), class: "btn grouped btn-small" do
      %i.icon-edit
      Edit
    - unless @user == current_user
      - if @user.blocked?
        = link_to 'Unblock', unblock_admin_user_path(@user), method: :put, class: "btn grouped btn-small success"
      - else
        = link_to 'Block', block_admin_user_path(@user), confirm: 'USER WILL BE BLOCKED! Are you sure?', method: :put, class: "btn grouped btn-small btn-remove"
      = link_to 'Destroy', [:admin, @user], confirm: "USER #{@user.name} WILL BE REMOVED! Are you sure?", method: :delete, class: "btn grouped btn-small btn-remove"
%hr

.row
  .span6
    .ui-box
      %h5.title
        Account:
        .pull-right
          = image_tag gravatar_icon(@user.email, 32), class: "avatar s32"
      %ul.well-list
        %li
          %span.light Name:
          %strong= @user.name
        %li
          %span.light Username:
          %strong
            = @user.username
        %li
          %span.light Email:
          %strong
            = mail_to @user.email

        %li
          %span.light Member since:
          %strong
            = @user.created_at.stamp("Nov 12, 2031")

        %li
          %span.light Last sign-in at:
          %strong
            - if @user.last_sign_in_at
              = @user.last_sign_in_at.stamp("Nov 12, 2031")
            - else
              never

        - if @user.ldap_user?
          %li
            %span.light LDAP uid:
            %strong
              = @user.extern_uid

        - if @user.created_by
          %li
            %span.light Created by:
            %strong
              = link_to @user.created_by.name, [:admin, @user.created_by]

    - if @user.users_groups.present?
      .ui-box
        %h5.title Groups:
        %ul.well-list
          - @user.users_groups.each do |user_group|
            - group = user_group.group
            %li
              %strong= link_to group.name, admin_group_path(group)
              .pull-right
                %span.light= user_group.human_access

  .span6
    .ui-box
      %h5.title Projects (#{@projects.count})
      %ul.well-list
        - @projects.sort_by(&:name_with_namespace).each do |project|
          - tm = project.team.find_tm(@user.id)
          %li
            = link_to admin_project_path(project), class: dom_class(project) do
              - if project.namespace
                = project.namespace.human_name
                \/
              %strong.well-title
                = truncate(project.name, length: 45)

            - if tm
              .pull-right
                %span.light= tm.human_access
                = link_to admin_project_member_path(project, tm.user), confirm: remove_from_project_team_message(project, @user), method: :delete, class: "btn btn-small btn-remove" do
                  %i.icon-remove