debian-mirror-gitlab/app/views/protected_branches/shared/_dropdown.html.haml
2023-03-05 14:24:40 +05:30

21 lines
1.1 KiB
Text

- toggle_classes = local_assigns.fetch(:toggle_classes, '')
= f.hidden_field(:name)
= dropdown_tag(_('Select branch or create wildcard'),
options: { toggle_class: "js-protected-branch-select js-filter-submit wide monospace #{toggle_classes}",
filter: true,
dropdown_class: "dropdown-menu-selectable git-revision-dropdown",
dropdown_qa_selector: "protected_branch_dropdown_content",
placeholder: _("Search protected branches"),
footer_content: true,
data: { show_no: true, show_any: true, show_upcoming: true,
selected: params[:protected_branch_name],
project_id: @project.try(:id),
qa_selector: "protected_branch_dropdown" } }) do
%ul.dropdown-footer-list
%li
%button{ class: "dropdown-create-new-item-button js-dropdown-create-new-item", title: _("New Protected Branch") }
= _('Create wildcard')
%code