Fix routing. Finalize user show page

This commit is contained in:
Dmitriy Zaporozhets 2013-01-22 19:45:13 +02:00
parent 70690e1971
commit 96d97c4857
5 changed files with 31 additions and 14 deletions

View file

@ -0,0 +1,20 @@
.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)
%span.right.light
- if project.owner == @user
%i.icon-wrench
- tm = project.team.get_tm(@user.id)
- if tm
= tm.project_access_human
%p.light
%i.icon-wrench
– user is a project owner

View file

@ -3,7 +3,10 @@
%h3.page_title
= image_tag gravatar_icon(@user.email, 90), class: "avatar s90"
= @user.name
%span.light (@#{@user.username})
%br
%small @#{@user.username}
%br
%small member since #{@user.created_at.stamp("Nov 12, 2031")}
.clearfix
%hr
%h5 Recent events
@ -31,14 +34,4 @@
%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)
= render 'projects'