debian-mirror-gitlab/app/views/groups/settings/_general.html.haml

34 lines
1.6 KiB
Text
Raw Normal View History

2018-12-13 13:39:08 +05:30
= form_for @group, html: { multipart: true, class: 'gl-show-field-errors js-general-settings-form' }, authenticity_token: true do |f|
2018-11-20 20:47:30 +05:30
%input{ type: 'hidden', name: 'update_section', value: 'js-general-settings' }
2018-11-08 19:23:39 +05:30
= form_errors(@group)
%fieldset
.row
2018-12-13 13:39:08 +05:30
.form-group.col-md-5
= f.label :name, _('Group name'), class: 'label-bold'
2018-11-08 19:23:39 +05:30
= f.text_field :name, class: 'form-control'
2018-12-13 13:39:08 +05:30
.form-group.col-md-7
= f.label :id, _('Group ID'), class: 'label-bold'
= f.text_field :id, class: 'form-control w-auto', readonly: true
2018-11-08 19:23:39 +05:30
2018-12-13 13:39:08 +05:30
.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
2018-11-08 19:23:39 +05:30
= render_if_exists 'shared/repository_size_limit_setting', form: f, type: :group
2018-12-13 13:39:08 +05:30
.form-group.prepend-top-default.append-bottom-20
2019-07-07 11:18:12 +05:30
.avatar-container.rect-avatar.s90
2018-12-13 13:39:08 +05:30
= group_icon(@group, alt: '', class: 'avatar group-avatar s90')
= f.label :avatar, _('Group avatar'), class: 'label-bold d-block'
2019-07-07 11:18:12 +05:30
= render 'shared/choose_avatar_button', f: f
2018-12-13 13:39:08 +05:30
- if @group.avatar?
%hr
2019-07-07 11:18:12 +05:30
= link_to _('Remove avatar'), group_avatar_path(@group.to_param), data: { confirm: _('Avatar will be removed. Are you sure?')}, method: :delete, class: 'btn btn-link'
2018-11-08 19:23:39 +05:30
2018-12-13 13:39:08 +05:30
= 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'