summaryrefslogtreecommitdiff
path: root/app/views/admin/application_settings/_diff_limits.html.haml
blob: 6811c1e10d61757fa1aa3308075d8ae3c3c47ad4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
= 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')
  = f.submit _('Save changes'), class: 'gl-button btn btn-success'