summaryrefslogtreecommitdiff
path: root/app/views/projects/protected_branches/shared/_create_protected_branch.html.haml
blob: c2d6c034e357d691d3e721172b40c4946e832473 (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_branch], html: { class: 'new-protected-branch js-new-protected-branch' } do |f|
  .card
    .card-header
      %h3.card-title
        Protect a branch
    .card-body
      = form_errors(@protected_branch)
      .form-group.row
        = f.label :name, class: 'col-md-2 text-right' do
          Branch:
        .col-md-10
          = render partial: "projects/protected_branches/shared/dropdown", locals: { f: f }
          .form-text.text-muted
            = link_to 'Wildcards', help_page_path('user/project/protected_branches', anchor: 'wildcard-protected-branches')
            such as
            %code *-stable
            or
            %code production/*
            are supported
      .form-group.row
        %label.col-md-2.text-right{ for: 'merge_access_levels_attributes' }
          Allowed to merge:
        .col-md-10
          = yield :merge_access_levels
      .form-group.row
        %label.col-md-2.text-right{ for: 'push_access_levels_attributes' }
          Allowed to push:
        .col-md-10
          = yield :push_access_levels

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