summaryrefslogtreecommitdiff
path: root/app/views/groups/settings/_general.html.haml
blob: 9ed71d19d328c94901fb5745cb7ba9e26fadbf5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
= form_for @group, html: { multipart: true, class: 'gl-show-field-errors js-general-settings-form' }, authenticity_token: true do |f|
  %input{ type: 'hidden', name: 'update_section', value: 'js-general-settings' }
  = form_errors(@group)

  %fieldset
    .row
      .form-group.col-md-5
        = f.label :name, _('Group name'), class: 'label-bold'
        = f.text_field :name, class: 'form-control'

      .form-group.col-md-7
        = f.label :id, _('Group ID'), class: 'label-bold'
        = f.text_field :id, class: 'form-control w-auto', readonly: true

    .row.prepend-top-8
      .form-group.col-md-9.append-bottom-0
        = f.label :description, _('Group description (optional)'), class: 'label-bold'
        = f.text_area :description, class: 'form-control', rows: 3, maxlength: 250

    = render_if_exists 'shared/repository_size_limit_setting', form: f, type: :group

    .form-group.prepend-top-default.append-bottom-20
      .avatar-container.rect-avatar.s90
        = group_icon(@group, alt: '', class: 'avatar group-avatar s90')
      = f.label :avatar, _('Group avatar'), class: 'label-bold d-block'
      = render 'shared/choose_group_avatar_button', f: f
      - if @group.avatar?
        %hr
        = link_to _('Remove avatar'), group_avatar_path(@group.to_param), data: { confirm: _('Avatar will be removed. Are you sure?')}, method: :delete, class: 'btn btn-danger btn-inverted'

    = render 'shared/visibility_level', f: f, visibility_level: @group.visibility_level, can_change_visibility_level: can_change_group_visibility_level?(@group), form_model: @group

  = f.submit _('Save changes'), class: 'btn btn-success mt-4 js-dirty-submit'