summaryrefslogtreecommitdiff
path: root/app/views/projects/protected_tags/shared/_create_protected_tag.html.haml
blob: d67c3dc19d7ad502950a913a994692ea3b08041a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
= gitlab_ui_form_for [@project, @protected_tag], html: { class: 'new-protected-tag js-new-protected-tag' } do |f|
  %input{ type: 'hidden', name: 'update_section', value: 'js-protected-tags-settings' }
  = render Pajamas::CardComponent.new(card_options: { class: 'gl-mb-5' }) do |c|
    - c.with_header do
      = _('Protect a tag')
    - c.with_body do
      = form_errors(@protected_tag)
      .form-group.row
        = f.label :name, _('Tag:'), class: 'col-md-2 text-left text-md-right'
        .col-md-10.protected-tags-dropdown
          = render partial: "projects/protected_tags/shared/dropdown", locals: { f: f }
          .form-text.text-muted
            - wildcards_url = help_page_path('user/project/protected_tags', anchor: 'wildcard-protected-tags')
            - wildcards_link_start = '<a href="%{url}" target="_blank" rel="noopener noreferrer">'.html_safe % { url: wildcards_url }
            = html_escape(_("%{wildcards_link_start}Wildcards%{wildcards_link_end} such as %{code_tag_start}v*%{code_tag_end} or %{code_tag_start}*-release%{code_tag_end} are supported.")) % { wildcards_link_start: wildcards_link_start, wildcards_link_end: '</a>'.html_safe, code_tag_start: '<code>'.html_safe, code_tag_end: '</code>'.html_safe }
      .form-group.row
        = f.label :create_access_levels_attributes, _('Allowed to create:'), class: 'col-md-2 text-left text-md-right'
        .col-md-10
          .create_access_levels-container
            = yield :create_access_levels

    - c.with_footer do
      = f.submit _('Protect'), pajamas_button: true, disabled: true, data: { qa_selector: 'protect_tag_button' }