summaryrefslogtreecommitdiff
path: root/app/views/groups/settings/_general.html.haml
blob: 64786d24266c5326ad08be803bce80c38ac774a7 (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
34
35
36
37
38
= form_for @group, html: { multipart: true, class: 'gl-show-field-errors' }, authenticity_token: true do |f|
  = form_errors(@group)

  %fieldset
    .row
      .form-group.col-md-9
        = f.label :name, class: 'label-light' do
          Group name
        = f.text_field :name, class: 'form-control'

      .form-group.col-md-3
        = f.label :id, class: 'label-light' do
          Group ID
        = f.text_field :id, class: 'form-control', readonly: true

    .form-group
      = f.label :description, class: 'label-light' do
        Group description
        %span.light (optional)
      = 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.row
      .col-sm-12
        .avatar-container.s160
          = group_icon(@group, alt: '', class: 'avatar group-avatar s160')
        %p.light
          - if @group.avatar?
            You can change the group avatar here
          - else
            You can upload a group avatar here
        = 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'

  = f.submit 'Save group', class: 'btn btn-success'