summaryrefslogtreecommitdiff
path: root/app/views/dashboard/_projects_head.html.haml
blob: 97a446dbeec367d9f12eaa75ae23cca066ff2aba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
- project_tab_filter = local_assigns.fetch(:project_tab_filter, "")
- feature_project_list_filter_bar = Feature.enabled?(:project_list_filter_bar)

= content_for :flash_message do
  = render 'shared/project_limit'

.page-title-holder.d-flex.align-items-center
  %h1.page-title= _('Projects')

  - if current_user.can_create_project?
    .page-title-controls
      = link_to _("New project"), new_project_path, class: "btn btn-success"

.top-area.scrolling-tabs-container.inner-page-scroll-tabs
  .fade-left= icon('angle-left')
  .fade-right= icon('angle-right')
  %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
      = link_to dashboard_projects_path, class: 'shortcuts-activity', data: {placement: 'right'} do
        = _("Your projects")
        %span.badge.badge-pill= limited_counter_with_delimiter(@total_user_projects_count)
    = nav_link(page: starred_dashboard_projects_path) do
      = link_to starred_dashboard_projects_path, data: {placement: 'right'} do
        = _("Starred projects")
        %span.badge.badge-pill= limited_counter_with_delimiter(@total_starred_projects_count)
    = nav_link(page: [explore_root_path, trending_explore_projects_path, starred_explore_projects_path, explore_projects_path]) do
      = link_to explore_root_path, data: {placement: 'right'} do
        = _("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