summaryrefslogtreecommitdiff
path: root/app/views/users/show.html.haml
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-01-22 19:05:01 +0200
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-01-22 19:05:01 +0200
commit70690e1971f6d009da9a37782764ae7446f69636 (patch)
treef8360d13ca2b44e4531cd90120b407ced93c935d /app/views/users/show.html.haml
parente0fb0703c4fecb6ed036d7599b0692de9c92b206 (diff)
downloadgitlab-ce-70690e1971f6d009da9a37782764ae7446f69636.tar.gz
base implementation
Diffstat (limited to 'app/views/users/show.html.haml')
-rw-r--r--app/views/users/show.html.haml44
1 files changed, 44 insertions, 0 deletions
diff --git a/app/views/users/show.html.haml b/app/views/users/show.html.haml
new file mode 100644
index 00000000000..613ff358a87
--- /dev/null
+++ b/app/views/users/show.html.haml
@@ -0,0 +1,44 @@
+.row
+ .span8
+ %h3.page_title
+ = image_tag gravatar_icon(@user.email, 90), class: "avatar s90"
+ = @user.name
+ %span.light (@#{@user.username})
+ .clearfix
+ %hr
+ %h5 Recent events
+ = render @events
+ .span4
+ .ui-box
+ %h5.title Profile
+ %ul.well-list
+ %li
+ %strong Email
+ %span.right= mail_to @user.email
+ - unless @user.skype.blank?
+ %li
+ %strong Skype
+ %span.right= @user.skype
+ - unless @user.linkedin.blank?
+ %li
+ %strong LinkedIn
+ %span.right= @user.linkedin
+ - unless @user.twitter.blank?
+ %li
+ %strong Twitter
+ %span.right= @user.twitter
+ - unless @user.bio.blank?
+ %li
+ %strong Bio
+ %span.right= @user.bio
+ .ui-box
+ %h5.title Projects
+ %ul.well-list
+ - @projects.each do |project|
+ %li
+ = link_to project_path(project), class: dom_class(project) do
+ - if project.namespace
+ = project.namespace.human_name
+ \/
+ %strong.well-title
+ = truncate(project.name, length: 45)