Commit a9661c8dfef0f0e0e081d401f13777024f8b1cab
Exists in
master
and in
4 other branches
Merge branch 'ui/namespace_title' of /home/git/repositories/dzaporozhets/gitlabhq
Showing
1 changed file
with
4 additions
and
1 deletions
Show diff stats
app/helpers/projects_helper.rb
... | ... | @@ -45,7 +45,10 @@ module ProjectsHelper |
45 | 45 | link_to(simple_sanitize(project.group.name), group_path(project.group)) + " / " + project.name |
46 | 46 | end |
47 | 47 | else |
48 | - project.name | |
48 | + owner = project.namespace.owner | |
49 | + content_tag :span do | |
50 | + link_to(simple_sanitize(owner.name), user_path(owner)) + " / " + project.name | |
51 | + end | |
49 | 52 | end |
50 | 53 | end |
51 | 54 | ... | ... |