debian-mirror-gitlab/app/views/dashboard/_projects_head.html.haml

36 lines
1.7 KiB
Text
Raw Normal View History

2019-07-31 22:56:46 +05:30
- project_tab_filter = local_assigns.fetch(:project_tab_filter, "")
- feature_project_list_filter_bar = Feature.enabled?(:project_list_filter_bar)
2015-12-23 02:04:40 +05:30
= content_for :flash_message do
= render 'shared/project_limit'
2017-09-10 17:25:29 +05:30
2019-07-31 22:56:46 +05:30
.page-title-holder.d-flex.align-items-center
2018-12-13 13:39:08 +05:30
%h1.page-title= _('Projects')
- if current_user.can_create_project?
.page-title-controls
2019-07-31 22:56:46 +05:30
= link_to _("New project"), new_project_path, class: "btn btn-success"
2018-12-13 13:39:08 +05:30
2017-08-17 22:00:37 +05:30
.top-area.scrolling-tabs-container.inner-page-scroll-tabs
.fade-left= icon('angle-left')
.fade-right= icon('angle-right')
2019-07-31 22:56:46 +05:30
%ul.nav-links.scrolling-tabs.mobile-separator.nav.nav-tabs{ class: ('border-0' if feature_project_list_filter_bar) }
= nav_link(page: [dashboard_projects_path, root_path]) do
2018-03-17 18:26:18 +05:30
= link_to dashboard_projects_path, class: 'shortcuts-activity', data: {placement: 'right'} do
2019-07-31 22:56:46 +05:30
= _("Your projects")
2019-03-02 22:35:43 +05:30
%span.badge.badge-pill= limited_counter_with_delimiter(@total_user_projects_count)
= nav_link(page: starred_dashboard_projects_path) do
2018-03-17 18:26:18 +05:30
= link_to starred_dashboard_projects_path, data: {placement: 'right'} do
2019-07-31 22:56:46 +05:30
= _("Starred projects")
2019-03-02 22:35:43 +05:30
%span.badge.badge-pill= limited_counter_with_delimiter(@total_starred_projects_count)
2016-04-02 18:10:28 +05:30
= nav_link(page: [explore_root_path, trending_explore_projects_path, starred_explore_projects_path, explore_projects_path]) do
2018-03-17 18:26:18 +05:30
= link_to explore_root_path, data: {placement: 'right'} do
2019-07-31 22:56:46 +05:30
= _("Explore projects")
- unless feature_project_list_filter_bar
.nav-controls
= render 'shared/projects/search_form'
= render 'shared/projects/dropdown'
- if feature_project_list_filter_bar
.project-filters
= render 'shared/projects/search_bar', project_tab_filter: project_tab_filter