summaryrefslogtreecommitdiff
path: root/app/views/projects/protected_tags/_create_protected_tag.html.haml
blob: 6e187b54a592f920cd90cfee7fe60c072b68428f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
= form_for [@project.namespace.becomes(Namespace), @project, @protected_tag], html: { class: 'js-new-protected-tag' } do |f|
  .panel.panel-default
    .panel-heading
      %h3.panel-title
        Protect a tag
    .panel-body
      .form-horizontal
        = form_errors(@protected_tag)
        .form-group
          = f.label :name, class: 'col-md-2 text-right' do
            Tag:
          .col-md-10
            = render partial: "projects/protected_tags/dropdown", locals: { f: f }
            .help-block
              = link_to 'Wildcards', help_page_path('user/project/protected_tags', anchor: 'wildcard-protected-tags')
              such as
              %code v*
              or
              %code *-release
              are supported
        .form-group
          %label.col-md-2.text-right{ for: 'create_access_levels_attributes' }
            Allowed to create:
          .col-md-10
            .create_access_levels-container
              = dropdown_tag('Select',
                             options: { toggle_class: 'js-allowed-to-create wide',
                             dropdown_class: 'dropdown-menu-selectable',
                             data: { field_name: 'protected_tag[create_access_levels_attributes][0][access_level]', input_id: 'create_access_levels_attributes' }})

    .panel-footer
      = f.submit 'Protect', class: 'btn-create btn', disabled: true