6b5aa83354
Settings This is done by passing a visibility_level option to the group edit _form. The visibility_level is set to @group.visibility_level in edit ation and to default_group_visibility in the new action.
30 lines
1 KiB
Text
30 lines
1 KiB
Text
= form_for [:admin, @group], html: { class: "form-horizontal" } do |f|
|
|
= form_errors(@group)
|
|
= render 'shared/group_form', f: f
|
|
|
|
.form-group.group-description-holder
|
|
= f.label :avatar, "Group avatar", class: 'control-label'
|
|
.col-sm-10
|
|
= render 'shared/choose_group_avatar_button', f: f
|
|
|
|
= render 'shared/visibility_level', f: f, visibility_level: visibility_level, can_change_visibility_level: can_change_group_visibility_level?(@group), form_model: @group
|
|
|
|
.form-group
|
|
.col-sm-offset-2.col-sm-10
|
|
= render 'shared/allow_request_access', form: f
|
|
|
|
= render 'groups/group_lfs_settings', f: f
|
|
|
|
- if @group.new_record?
|
|
.form-group
|
|
.col-sm-offset-2.col-sm-10
|
|
.alert.alert-info
|
|
= render 'shared/group_tips'
|
|
.form-actions
|
|
= f.submit 'Create group', class: "btn btn-create"
|
|
= link_to 'Cancel', admin_groups_path, class: "btn btn-cancel"
|
|
|
|
- else
|
|
.form-actions
|
|
= f.submit 'Save changes', class: "btn btn-save"
|
|
= link_to 'Cancel', admin_group_path(@group), class: "btn btn-cancel"
|