debian-mirror-gitlab/app/views/projects/default_branch/_show.html.haml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
1.8 KiB
Text
Raw Normal View History

2019-07-31 22:56:46 +05:30
- expanded = expanded_by_default?
2018-11-20 20:47:30 +05:30
%section.settings.no-animate#default-branch-settings{ class: ('expanded' if expanded) }
.settings-header
2021-04-17 20:07:23 +05:30
%h4.settings-title.js-settings-toggle.js-settings-toggle-trigger-only= _('Default branch')
2022-07-23 23:45:48 +05:30
= render Pajamas::ButtonComponent.new(button_options: { class: 'js-settings-toggle' }) do
2018-11-20 20:47:30 +05:30
= expanded ? _('Collapse') : _('Expand')
%p
2021-03-11 19:13:27 +05:30
= _('Set the default branch for this project. All merge requests and commits are made against this branch unless you specify a different one.')
2018-11-20 20:47:30 +05:30
.settings-content
2022-07-16 23:28:13 +05:30
= gitlab_ui_form_for @project, remote: true, html: { multipart: true, anchor: 'default-branch-settings' }, authenticity_token: true do |f|
2020-03-13 15:44:24 +05:30
%fieldset
- if @project.empty_repo?
.text-secondary
= _('A default branch cannot be chosen for an empty project.')
- else
2018-11-20 20:47:30 +05:30
.form-group
2022-10-11 01:57:18 +05:30
= f.label :default_branch, _("Default branch"), class: 'label-bold'
2021-09-30 23:02:18 +05:30
= f.select(:default_branch, @project.repository.branch_names, {}, {class: 'select2 select-wide', data: { qa_selector: 'default_branch_dropdown' }})
2020-03-13 15:44:24 +05:30
.form-group
2022-07-16 23:28:13 +05:30
- 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
2020-03-13 15:44:24 +05:30
2021-09-30 23:02:18 +05:30
= f.submit _('Save changes'), class: "gl-button btn btn-confirm", data: { qa_selector: 'save_changes_button' }