gitlab-org--gitlab-foss/app/views/shared/issuable/_label_page_default.html.haml

32 lines
1.3 KiB
Text
Raw Normal View History

2018-01-23 02:03:01 -05:00
- title = local_assigns.fetch(:title, _('Assign labels'))
- content_title = local_assigns.fetch(:content_title, _('Create lists from labels. Issues with that label appear in that list.'))
- show_title = local_assigns.fetch(:show_title, true)
2016-05-31 17:11:46 -04:00
- show_create = local_assigns.fetch(:show_create, true)
- show_footer = local_assigns.fetch(:show_footer, true)
- filter_placeholder = local_assigns.fetch(:filter_placeholder, 'Search')
- show_boards_content = local_assigns.fetch(:show_boards_content, false)
- subject = @project || @group
2016-04-18 15:56:02 -04:00
.dropdown-page-one
- if show_title
= dropdown_title(title)
- if show_boards_content
.issue-board-dropdown-content
%p.m-0
= content_title
= dropdown_filter(filter_placeholder)
2016-04-18 15:56:02 -04:00
= dropdown_content
2017-09-06 02:26:26 -04:00
- if current_board_parent && show_footer
2016-04-18 15:56:02 -04:00
= dropdown_footer do
%ul.dropdown-footer-list
2017-09-06 02:26:26 -04:00
- if can?(current_user, :admin_label, current_board_parent)
2016-04-18 15:56:02 -04:00
%li
%a.dropdown-toggle-page{ href: "#" }
= create_label_title(subject)
2016-04-18 15:56:02 -04:00
%li
2017-09-06 02:26:26 -04:00
= link_to labels_path, :"data-is-link" => true do
- if show_create && can?(current_user, :admin_label, current_board_parent)
= manage_labels_title(subject)
2016-04-18 15:56:02 -04:00
- else
= view_labels_title(subject)
2016-05-31 17:11:46 -04:00
= dropdown_loading