debian-mirror-gitlab/app/views/admin/application_settings/repository.html.haml

60 lines
2.6 KiB
Text
Raw Normal View History

2018-12-05 23:21:45 +05:30
- breadcrumb_title _("Repository")
- page_title _("Repository")
- @content_class = "limit-container-width" unless fluid_layout
2020-07-28 23:09:34 +05:30
- if Feature.enabled?(:global_default_branch_name, default_enabled: true)
%section.settings.as-default-branch-name.no-animate#js-default-branch-name{ class: ('expanded' if expanded_by_default?) }
.settings-header
%h4
= _('Default initial branch name')
2021-03-11 19:13:27 +05:30
%button.btn.gl-button.btn-default.js-settings-toggle{ type: 'button' }
2020-07-28 23:09:34 +05:30
= expanded_by_default? ? _('Collapse') : _('Expand')
%p
= _('Set the default name of the initial branch when creating new repositories through the user interface.')
.settings-content
= render 'initial_branch_name'
2018-12-05 23:21:45 +05:30
%section.settings.as-mirror.no-animate#js-mirror-settings{ class: ('expanded' if expanded_by_default?) }
.settings-header
%h4
2019-12-26 22:10:19 +05:30
= _('Repository mirroring')
2021-03-11 19:13:27 +05:30
%button.btn.gl-button.btn-default.js-settings-toggle{ type: 'button' }
2018-12-05 23:21:45 +05:30
= expanded_by_default? ? 'Collapse' : 'Expand'
%p
2019-12-26 22:10:19 +05:30
= _('Configure repository mirroring.')
2018-12-05 23:21:45 +05:30
.settings-content
= render partial: 'repository_mirrors_form'
2020-10-24 23:57:45 +05:30
%section.settings.as-repository-storage.no-animate#js-repository-storage-settings{ class: ('expanded' if expanded_by_default?), data: { qa_selector: 'repository_storage_settings_content' } }
2018-12-05 23:21:45 +05:30
.settings-header
%h4
= _('Repository storage')
2021-03-11 19:13:27 +05:30
%button.btn.gl-button.btn-default.js-settings-toggle{ type: 'button' }
2018-12-05 23:21:45 +05:30
= expanded_by_default? ? _('Collapse') : _('Expand')
%p
2018-12-13 13:39:08 +05:30
= _('Configure storage path settings.')
2018-12-05 23:21:45 +05:30
.settings-content
= render 'repository_storage'
%section.settings.as-repository-check.no-animate#js-repository-check-settings{ class: ('expanded' if expanded_by_default?) }
.settings-header
%h4
= _('Repository maintenance')
2021-03-11 19:13:27 +05:30
%button.btn.gl-button.btn-default.js-settings-toggle{ type: 'button' }
2018-12-05 23:21:45 +05:30
= expanded_by_default? ? _('Collapse') : _('Expand')
%p
= _('Configure automatic git checks and housekeeping on repositories.')
.settings-content
= render 'repository_check'
2019-12-04 20:38:33 +05:30
%section.settings.as-repository-static-objects.no-animate#js-repository-static-objects-settings{ class: ('expanded' if expanded_by_default?) }
.settings-header
%h4
= _('Repository static objects')
2021-03-11 19:13:27 +05:30
%button.btn.gl-button.btn-default.js-settings-toggle{ type: 'button' }
2019-12-04 20:38:33 +05:30
= expanded_by_default? ? _('Collapse') : _('Expand')
%p
= _('Serve repository static objects (e.g. archives, blobs, ...) from an external storage (e.g. a CDN).')
.settings-content
= render 'repository_static_objects'