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

_create_protected_tag.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: 8dcc59a09d092b89b277183fe9bed8ec70154dea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
= 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' }
  = form_errors(@protected_tag)
  .form-group
    = f.label :name, _('Tag')
    .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
    = f.label :create_access_levels_attributes, _('Allowed to create')
    .create_access_levels-container
      = yield :create_access_levels

  = f.submit _('Protect'), pajamas_button: true, disabled: true, data: { qa_selector: 'protect_tag_button' }
  = render Pajamas::ButtonComponent.new(button_options: { type: 'reset', class: 'gl-ml-2 js-toggle-button' }) do
    = _('Cancel')