summaryrefslogtreecommitdiff
path: root/app/views/projects/protected_tags/shared/_dropdown.html.haml
blob: 9d5d649bc40af7cef43adf03859d0b68539d2414 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
= f.hidden_field(:name)

= dropdown_tag(s_('ProtectedBranch|Select tag or create wildcard'),
               options: { toggle_class: 'js-protected-tag-select js-filter-submit wide monospace',
                          filter: true, dropdown_class: "dropdown-menu-selectable capitalize-header git-revision-dropdown", placeholder: s_("ProtectedBranch|Search protected tags"),
                          footer_content: true,
                          data: { show_no: true, show_any: true, show_upcoming: true,
                                  selected: params[:protected_tag_name],
                                  project_id: @project.try(:id), qa_selector: 'tags_dropdown' } }) do

  %ul.dropdown-footer-list
    %li
      %button{ class: "dropdown-create-new-item-button js-dropdown-create-new-item", title: s_("ProtectedBranch|New Protected Tag") }
        = s_('ProtectedBranch|Create wildcard')
        %code