2014-09-02 18:07:02 +05:30
|
|
|
= form_for [:admin, @group], html: { class: "form-horizontal" } do |f|
|
2016-06-02 11:05:42 +05:30
|
|
|
= form_errors(@group)
|
2015-04-26 12:48:37 +05:30
|
|
|
= render 'shared/group_form', f: f
|
2014-09-02 18:07:02 +05:30
|
|
|
|
|
|
|
.form-group.group-description-holder
|
|
|
|
= f.label :avatar, "Group avatar", class: 'control-label'
|
|
|
|
.col-sm-10
|
2015-04-26 12:48:37 +05:30
|
|
|
= render 'shared/choose_group_avatar_button', f: f
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
= render 'shared/visibility_level', f: f, visibility_level: visibility_level, can_change_visibility_level: can_change_group_visibility_level?(@group), form_model: @group
|
2016-06-02 11:05:42 +05:30
|
|
|
|
2016-08-24 12:49:21 +05:30
|
|
|
.form-group
|
|
|
|
.col-sm-offset-2.col-sm-10
|
|
|
|
= render 'shared/allow_request_access', form: f
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
= render 'groups/group_admin_settings', f: f
|
2016-09-29 09:46:39 +05:30
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
- if @group.new_record?
|
|
|
|
.form-group
|
2015-09-11 14:41:01 +05:30
|
|
|
.col-sm-offset-2.col-sm-10
|
2015-04-26 12:48:37 +05:30
|
|
|
.alert.alert-info
|
|
|
|
= render 'shared/group_tips'
|
2014-09-02 18:07:02 +05:30
|
|
|
.form-actions
|
|
|
|
= f.submit 'Create group', class: "btn btn-create"
|
|
|
|
= link_to 'Cancel', admin_groups_path, class: "btn btn-cancel"
|
|
|
|
|
|
|
|
- else
|
|
|
|
.form-actions
|
2016-04-02 18:10:28 +05:30
|
|
|
= f.submit 'Save changes', class: "btn btn-save"
|
2014-09-02 18:07:02 +05:30
|
|
|
= link_to 'Cancel', admin_group_path(@group), class: "btn btn-cancel"
|