diff options
| author | Kushal Pandya <kushal@gitlab.com> | 2017-02-16 19:57:20 +0530 |
|---|---|---|
| committer | Alfredo Sumaran <alfredo@gitlab.com> | 2017-02-22 17:19:23 -0500 |
| commit | c2d950f5ef35bd4778daf36ba9f30171724e9da5 (patch) | |
| tree | 710ae3b17b1d805e5c64ba6a3bb55564844e37ec | |
| parent | 6634f663e46cd1f0ed877132a472562600e5a046 (diff) | |
| download | gitlab-ce-c2d950f5ef35bd4778daf36ba9f30171724e9da5.tar.gz | |
Add sub-nav to page
| -rw-r--r-- | app/views/groups/activity.html.haml | 3 | ||||
| -rw-r--r-- | app/views/groups/group_members/index.html.haml | 1 | ||||
| -rw-r--r-- | app/views/groups/show.html.haml | 1 |
3 files changed, 4 insertions, 1 deletions
diff --git a/app/views/groups/activity.html.haml b/app/views/groups/activity.html.haml index aaad265b3ee..d7375b23524 100644 --- a/app/views/groups/activity.html.haml +++ b/app/views/groups/activity.html.haml @@ -2,7 +2,8 @@ - if current_user = auto_discovery_link_tag(:atom, group_url(@group, format: :atom, private_token: current_user.private_token), title: "#{@group.name} activity") -- page_title "Activity" +- page_title "Activity" += render 'groups/head' %section.activities = render 'activities' diff --git a/app/views/groups/group_members/index.html.haml b/app/views/groups/group_members/index.html.haml index 2e4e4511bb6..8cb56443191 100644 --- a/app/views/groups/group_members/index.html.haml +++ b/app/views/groups/group_members/index.html.haml @@ -1,4 +1,5 @@ - page_title "Members" += render 'groups/head' .project-members-page.prepend-top-default %h4 diff --git a/app/views/groups/show.html.haml b/app/views/groups/show.html.haml index b040f404ac4..3d7b469660a 100644 --- a/app/views/groups/show.html.haml +++ b/app/views/groups/show.html.haml @@ -4,6 +4,7 @@ - if current_user = auto_discovery_link_tag(:atom, group_url(@group, format: :atom, private_token: current_user.private_token), title: "#{@group.name} activity") += render 'groups/head' = render 'groups/home_panel' |
