Commit 0145e8ea authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Set page title based on content in dashboard area

Signed-off-by: default avatarDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
parent b0082738
...@@ -3,5 +3,5 @@ ...@@ -3,5 +3,5 @@
= link_to dashboard_groups_path, title: 'Your groups', data: {placement: 'right'} do = link_to dashboard_groups_path, title: 'Your groups', data: {placement: 'right'} do
Your Groups Your Groups
= nav_link(page: [explore_groups_path]) do = nav_link(page: [explore_groups_path]) do
= link_to explore_groups_path, title: 'Explore groups', data: {toggle: 'tooltip', placement: 'bottom'} do = link_to explore_groups_path, title: 'Explore groups', data: {placement: 'bottom'} do
Explore Groups Explore Groups
...@@ -6,5 +6,5 @@ ...@@ -6,5 +6,5 @@
= link_to starred_dashboard_projects_path, title: 'Starred Projects', data: {placement: 'right'} do = link_to starred_dashboard_projects_path, title: 'Starred Projects', data: {placement: 'right'} do
Starred Projects Starred Projects
= nav_link(page: [explore_root_path, trending_explore_projects_path, starred_explore_projects_path, explore_projects_path], html_options: { class: 'hidden-xs' }) do = nav_link(page: [explore_root_path, trending_explore_projects_path, starred_explore_projects_path, explore_projects_path], html_options: { class: 'hidden-xs' }) do
= link_to explore_root_path, title: 'Explore', data: {toggle: 'tooltip', placement: 'bottom'} do = link_to explore_root_path, title: 'Explore', data: {placement: 'right'} do
Explore Projects Explore Projects
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
- if current_user - if current_user
= auto_discovery_link_tag(:atom, dashboard_url(format: :atom, private_token: current_user.private_token), title: "All activity") = auto_discovery_link_tag(:atom, dashboard_url(format: :atom, private_token: current_user.private_token), title: "All activity")
- header_title "Activity", activity_dashboard_path
= render 'dashboard/activity_head' = render 'dashboard/activity_head'
%section.activities %section.activities
......
- page_title "Groups" - page_title "Groups"
- header_title "Groups", dashboard_groups_path
= render 'dashboard/groups_head' = render 'dashboard/groups_head'
.gray-content-block .gray-content-block
......
- page_title "Issues" - page_title "Issues"
- header_title "Issues", issues_dashboard_path(assignee_id: current_user.id)
= content_for :meta_tags do = content_for :meta_tags do
- if current_user - if current_user
= auto_discovery_link_tag(:atom, issues_dashboard_url(format: :atom, private_token: current_user.private_token), title: "#{current_user.name} issues") = auto_discovery_link_tag(:atom, issues_dashboard_url(format: :atom, private_token: current_user.private_token), title: "#{current_user.name} issues")
%h3.page-title
Issues
%p.light %p.light
List all issues from all projects you have access to. List all issues from all projects you have access to.
%hr
.append-bottom-20 .append-bottom-20
.pull-right .pull-right
......
- page_title "Merge Requests" - page_title "Merge Requests"
%h3.page-title - header_title "Merge Requests", merge_requests_dashboard_path(assignee_id: current_user.id)
Merge Requests
%p.light %p.light
List all merge requests from all projects you have access to. List all merge requests from all projects you have access to.
%hr
.append-bottom-20 .append-bottom-20
= render 'shared/issuable/filter', type: :merge_requests = render 'shared/issuable/filter', type: :merge_requests
= render 'shared/merge_requests' = render 'shared/merge_requests'
- page_title "Milestones" - page_title "Milestones"
%h3.page-title - header_title "Milestones", dashboard_milestones_path
Milestones
%span.pull-right #{@dashboard_milestones.count} milestones
%p.light %p.light
List all milestones from all projects you have access to. List all milestones from all projects you have access to.
%hr
= render 'shared/milestones_filter' = render 'shared/milestones_filter'
.milestones .milestones
......
- page_title "Starred Projects" - page_title "Starred Projects"
- header_title "Projects", (current_user ? root_path : explore_root_path)
= render 'dashboard/projects_head' = render 'dashboard/projects_head'
- if @projects.any? - if @projects.any?
......
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
- if current_user - if current_user
= auto_discovery_link_tag(:atom, dashboard_url(format: :atom, private_token: current_user.private_token), title: "All activity") = auto_discovery_link_tag(:atom, dashboard_url(format: :atom, private_token: current_user.private_token), title: "All activity")
- header_title "Projects", (current_user ? root_path : explore_root_path)
= render 'dashboard/projects_head' = render 'dashboard/projects_head'
- if @last_push - if @last_push
......
- page_title "Groups" - page_title "Groups"
- header_title "Groups", (current_user ? dashboard_groups_path : explore_groups_path)
- if current_user - if current_user
= render 'dashboard/groups_head' = render 'dashboard/groups_head'
.gray-content-block.clearfix .gray-content-block.clearfix
......
- page_title "Dashboard" - page_title "Dashboard"
- header_title "Dashboard", root_path - unless @header_title
- header_title "Dashboard", root_path
- sidebar "dashboard" - sidebar "dashboard"
= render template: "layouts/application" = render template: "layouts/application"
- page_title "Explore" - page_title "Explore"
- if current_user - if current_user
- header_title "Dashboard", root_path - unless @header_title
- header_title "Projects", (current_user ? root_path : explore_root_path)
- else - else
- header_title "Explore GitLab", explore_root_path - header_title "Explore GitLab", explore_root_path
- sidebar "dashboard" - sidebar "dashboard"
......
- page_title 'Snippets' - page_title 'Snippets'
- if current_user - if current_user
- header_title "Dashboard", root_path - header_title "Snippets", user_snippets_path(current_user)
- else - else
- header_title 'Snippets', snippets_path - header_title 'Snippets', snippets_path
- sidebar "dashboard" - sidebar "dashboard"
......
- page_title "Your Snippets" - page_title "Your Snippets"
= render 'head' = render 'head'
.slead .gray-content-block
Share code pastes with others out of git repository
.pull-right .pull-right
= link_to new_snippet_path, class: "btn btn-new btn-sm", title: "New Snippet" do = link_to new_snippet_path, class: "btn btn-new", title: "New Snippet" do
Add new snippet Add new snippet
%ul.nav.nav-tabs .oneline
Share code pastes with others out of git repository
%ul.nav.nav-tabs.prepend-top-20
= nav_tab :scope, nil do = nav_tab :scope, nil do
= link_to user_snippets_path(@user) do = link_to user_snippets_path(@user) do
All All
......
...@@ -2,8 +2,14 @@ ...@@ -2,8 +2,14 @@
- if current_user - if current_user
= render 'head' = render 'head'
.slead .gray-content-block
Public snippets created by you and other users are listed here - if current_user
.pull-right
= link_to new_snippet_path, class: "btn btn-new", title: "New Snippet" do
Add new snippet
.oneline
Public snippets created by you and other users are listed here
= render 'snippets' = render 'snippets'
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment