Commit 070f49fdc550654e538977f4fe6ce4a609521696
1 parent
6b01196f
Exists in
master
and in
4 other branches
Make group name a link at header
Showing
1 changed file
with
3 additions
and
1 deletions
Show diff stats
app/helpers/projects_helper.rb
... | ... | @@ -55,7 +55,9 @@ module ProjectsHelper |
55 | 55 | |
56 | 56 | def project_title project |
57 | 57 | if project.group |
58 | - project.name_with_namespace | |
58 | + content_tag :span do | |
59 | + link_to(project.group.name, group_path(project.group)) + " / " + project.name | |
60 | + end | |
59 | 61 | else |
60 | 62 | project.name |
61 | 63 | end | ... | ... |