2018-12-13 13:39:08 +05:30
|
|
|
- docs_link_url = help_page_path('workflow/lfs/manage_large_binaries_with_git_lfs')
|
|
|
|
- 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 }
|
|
|
|
|
|
|
|
.form-group.append-bottom-default
|
|
|
|
.form-check
|
2019-12-04 20:38:33 +05:30
|
|
|
= f.check_box :lfs_enabled, checked: @group.lfs_enabled?, class: 'form-check-input', data: { qa_selector: 'lfs_checkbox' }
|
2018-12-13 13:39:08 +05:30
|
|
|
= f.label :lfs_enabled, class: 'form-check-label' do
|
|
|
|
%span
|
|
|
|
= _('Allow projects within this group to use Git LFS')
|
|
|
|
%br/
|
|
|
|
%span.text-muted= _('This setting can be overridden in each project.')
|