summaryrefslogtreecommitdiff
path: root/app/views/shared/issuable/_label_page_default.html.haml
blob: 18b50f9da7bf1825ab5524bc0d35d72111e6652f (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
- title = local_assigns.fetch(:title, 'Assign labels')
- show_create = local_assigns.fetch(:show_create, true)
- show_footer = local_assigns.fetch(:show_footer, true)
- filter_placeholder = local_assigns.fetch(:filter_placeholder, 'Search labels')
- show_boards_content = local_assigns.fetch(:show_boards_content, false)
.dropdown-page-one
  = dropdown_title(title)
  - if show_boards_content
    .issue-board-dropdown-content
      %p
        Each label that exists in your issue tracker can have its own dedicated
        list. Select a label below to add a list to your Board and it will
        automatically be populated with issues that have that label. To create
        a list for a label that doesn't exist yet, simply create the label below.
        Learn more in the
        = succeed "." do
          = link_to "Issue Boards documentation", help_page_path("user/project/issue_board"), class: "underlined-link"
  = dropdown_filter(filter_placeholder)
  = dropdown_content
  - if @project && show_footer
    = dropdown_footer do
      %ul.dropdown-footer-list
        - if can?(current_user, :admin_label, @project)
          %li
            %a.dropdown-toggle-page{href: "#"}
              Create new label
        %li
          = link_to namespace_project_labels_path(@project.namespace, @project), :"data-is-link" => true do
            - if show_create && @project && can?(current_user, :admin_label, @project)
              Manage labels
            - else
              View labels
  = dropdown_loading