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

show.html.haml « users « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 743ab0949a1557f44064b4103fb40742dd6dc0fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
.row
  .span8
    %h3.page-title
      = image_tag gravatar_icon(@user.email, 90), class: "avatar s90", alt: ''
      = @user.name
      - if @user == current_user
        .pull-right
          = link_to profile_path, class: 'btn' do
            %i.icon-edit
            Edit Profile
      %br
      %small #{@user.username}
      %br
      %small member since #{@user.created_at.stamp("Nov 12, 2031")}
    .clearfix
    %hr
    %h4 User Activity:
    = render @events
  .span4
    = render 'profile', user: @user
    = render 'projects', user: @user