debian-mirror-gitlab/app/views/groups/settings/_lfs.html.haml

14 lines
754 B
Text
Raw Normal View History

2020-04-22 19:07:51 +05:30
- docs_link_url = help_page_path('topics/git/lfs/index')
2018-12-13 13:39:08 +05:30
- docs_link_start = '<a href="%{url}" target="_blank" rel="noopener noreferrer">'.html_safe % { url: docs_link_url }
%h5= _('Large File Storage')
%p= s_('Check the %{docs_link_start}documentation%{docs_link_end}.').html_safe % { docs_link_start: docs_link_start, docs_link_end: '</a>'.html_safe }
2020-07-28 23:09:34 +05:30
.form-group.gl-mb-3
2021-06-08 01:23:25 +05:30
.gl-form-checkbox.custom-control.custom-checkbox
= f.check_box :lfs_enabled, checked: @group.lfs_enabled?, class: 'custom-control-input', data: { qa_selector: 'lfs_checkbox' }
= f.label :lfs_enabled, class: 'custom-control-label' do
= _('Allow projects within this group to use Git LFS')
%p.help-text= _('This setting can be overridden in each project.')