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

_groups_head.html.haml « dashboard « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 09e2e35c6175abb68ffee8cf588b41135b755b90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
.page-title-holder.d-flex.align-items-center
  %h1.page-title.gl-font-size-h-display= _('Groups')

  - if current_user.can_create_group?
    .page-title-controls
      = render Pajamas::ButtonComponent.new(href: new_group_path, variant: :confirm, button_options: { data: { qa_selector: "new_group_button", testid: "new-group-button" } }) do
        = _("New group")
.top-area
  = gl_tabs_nav({ class: 'gl-flex-grow-1 gl-border-0' }) do
    = gl_tab_link_to _("Your groups"), dashboard_groups_path
    = gl_tab_link_to _("Explore public groups"), explore_groups_path, data: { qa_selector: "public_groups_tab" }
  .nav-controls
    = render 'shared/groups/search_form'
    = render 'shared/groups/dropdown'