gitlab-org--gitlab-foss/app/views/users/show.html.haml

22 lines
552 B
Text
Raw Normal View History

2013-01-22 12:05:01 -05:00
.row
.span8
%h3.page_title
= image_tag gravatar_icon(@user.email, 90), class: "avatar s90"
= @user.name
2013-01-24 10:47:09 -05:00
- if @user == current_user
2013-01-30 09:40:43 -05:00
.pull-right
2013-01-29 15:29:21 -05:00
= link_to profile_path, class: 'btn btn-small' do
2013-01-24 10:47:09 -05:00
%i.icon-edit
Edit Profile
2013-01-22 12:45:13 -05:00
%br
%small @#{@user.username}
%br
%small member since #{@user.created_at.stamp("Nov 12, 2031")}
2013-01-22 12:05:01 -05:00
.clearfix
%hr
%h5 Recent events
= render @events
.span4
2013-02-13 12:14:35 -05:00
= render 'profile', user: @user
= render 'projects', user: @user