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

_dropdown.html.haml « shared « protected_tags « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 758df7b3c1eb9706dc1deb0606dc6616c55b101c (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 gl-w-auto!',
                          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