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

show.html.haml « user_sessions « ci « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 43f64a429b20c2656ea8923357b016722bd8f656 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
= image_tag user_avatar_url(current_user, 90), class: 'avatar avatar-inline avatar-tile s90', alt: ''
%h3
  Hi, #{@user.name}

  - if @user.is_admin
    %span.label.label-success Admin

.profile-block
  %p
    %span.light Email:
    %strong= @user.email

  %p
    %span.light GitLab profile:
    %strong= link_to @user.username, GitlabCi.config.gitlab_server.url + '/u/' + @user.username, target: "_blank"