summaryrefslogtreecommitdiff
path: root/app/views/users/_projects.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/users/_projects.html.haml')
-rw-r--r--app/views/users/_projects.html.haml20
1 files changed, 20 insertions, 0 deletions
diff --git a/app/views/users/_projects.html.haml b/app/views/users/_projects.html.haml
new file mode 100644
index 00000000000..f46a0ed1161
--- /dev/null
+++ b/app/views/users/_projects.html.haml
@@ -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