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

_show.html.haml « default_branch « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2d3d36a915782f26c0152a64d97dcfad4d98bc05 (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
- expanded = expanded_by_default?

%section.settings.no-animate#default-branch-settings{ class: ('expanded' if expanded) }
  .settings-header
    %h4.settings-title.js-settings-toggle.js-settings-toggle-trigger-only= _('Default branch')
    %button.btn.gl-button.btn-default.js-settings-toggle
      = expanded ? _('Collapse') : _('Expand')
    %p
      = _('Set the default branch for this project. All merge requests and commits are made against this branch unless you specify a different one.')

  .settings-content
    = gitlab_ui_form_for @project, remote: true, html: { multipart: true, anchor: 'default-branch-settings' }, authenticity_token: true do |f|
      %fieldset
        - if @project.empty_repo?
          .text-secondary
            = _('A default branch cannot be chosen for an empty project.')
        - else
          .form-group
            = f.label :default_branch, "Default branch", class: 'label-bold'
            = f.select(:default_branch, @project.repository.branch_names, {}, {class: 'select2 select-wide', data: { qa_selector: 'default_branch_dropdown' }})

        .form-group
          - help_text = _("When merge requests and commits in the default branch close, any issues they reference also close.")
          - help_icon = link_to sprite_icon('question-o'), help_page_path('user/project/issues/managing_issues.md', anchor: 'closing-issues-automatically'), target: '_blank', rel: 'noopener noreferrer'
          = f.gitlab_ui_checkbox_component :autoclose_referenced_issues,
            _("Auto-close referenced issues on default branch"),
            help_text: (help_text + " " + help_icon).html_safe

      = f.submit _('Save changes'), class: "gl-button btn btn-confirm", data: { qa_selector: 'save_changes_button' }