summaryrefslogtreecommitdiff
path: root/app/views/admin/application_settings/_diff_limits.html.haml
blob: 1bf25b6a55839c0a4b29f2b463dc69eac6cf27d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
= form_for @application_setting, url: general_admin_application_settings_path(anchor: 'js-merge-request-settings'), html: { class: 'fieldset-form' } do |f|
  = form_errors(@application_setting)

  %fieldset
    .form-group
      = f.label :diff_max_patch_bytes, 'Maximum diff patch size (Bytes)', class: 'label-light'
      = f.number_field :diff_max_patch_bytes, class: 'form-control'
      %span.form-text.text-muted
        Diff files surpassing this limit will be presented as 'too large'
        and won't be expandable.

        = link_to sprite_icon('question-o'),
          help_page_path('user/admin_area/diff_limits',
          anchor: 'maximum-diff-patch-size')
  .gl-display-flex.gl-justify-content-end
    = f.submit _('Save changes'), class: 'btn btn-success'