gitlabhq/gitlabhq

View on GitHub
app/views/users/show.html.haml

Summary

Maintainability
Test Coverage
.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