Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_projects_nav.html.haml « dashboard « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7cbd2fb14ecc1565a87f7c8bc0a73fe58c5a9cba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
- is_your_projects_path = current_page?(dashboard_projects_path) || current_page?(root_path)
- is_explore_projects_path = current_page?(explore_root_path) || current_page?(trending_explore_projects_path) || current_page?(starred_explore_projects_path) || current_page?(explore_projects_path)

= gl_tabs_nav({ class: 'scrolling-tabs nav-links gl-display-flex gl-flex-grow-1 gl-w-full nav gl-tabs-nav' }) do
  = gl_tab_link_to dashboard_projects_path, { item_active: is_your_projects_path, class: 'shortcuts-activity', data: { placement: 'right' } } do
    = s_("ProjectList|Yours")
    = gl_tab_counter_badge(limited_counter_with_delimiter(@total_user_projects_count))
  = gl_tab_link_to starred_dashboard_projects_path, { data: { placement: 'right' } } do
    = s_("ProjectList|Starred")
    = gl_tab_counter_badge(limited_counter_with_delimiter(@total_starred_projects_count))
  = gl_tab_link_to s_("ProjectList|Explore"), explore_root_path, { item_active: is_explore_projects_path, data: { placement: 'right' } }
  = gl_tab_link_to s_("ProjectList|Topics"), topics_explore_projects_path, { data: { placement: 'right' } }
  = render_if_exists "dashboard/removed_projects_tab"