2015-05-01 04:39:11 -04:00
|
|
|
- page_title 'New Group'
|
2015-12-02 08:27:29 -05:00
|
|
|
- header_title "Groups", dashboard_groups_path
|
|
|
|
|
|
|
|
%h3.page-title
|
|
|
|
New Group
|
|
|
|
%hr
|
|
|
|
|
2014-01-08 11:39:03 -05:00
|
|
|
= form_for @group, html: { class: 'group-form form-horizontal' } do |f|
|
2016-04-04 21:25:38 -04:00
|
|
|
= form_errors(@group)
|
2014-10-20 18:25:44 -04:00
|
|
|
= render 'shared/group_form', f: f, autofocus: true
|
2013-02-19 14:02:25 -05:00
|
|
|
|
2014-05-20 09:36:51 -04:00
|
|
|
.form-group.group-description-holder
|
|
|
|
= f.label :avatar, "Group avatar", class: 'control-label'
|
|
|
|
.col-sm-10
|
2014-10-20 17:29:49 -04:00
|
|
|
= render 'shared/choose_group_avatar_button', f: f
|
2014-05-20 09:36:51 -04:00
|
|
|
|
2016-03-08 19:01:33 -05:00
|
|
|
= render 'shared/visibility_level', f: f, visibility_level: default_group_visibility, can_change_visibility_level: true, form_model: @group
|
2016-03-01 10:22:29 -05:00
|
|
|
|
2013-12-30 18:27:02 -05:00
|
|
|
.form-group
|
2015-06-15 18:48:54 -04:00
|
|
|
.col-sm-offset-2.col-sm-10
|
2014-10-20 17:43:51 -04:00
|
|
|
= render 'shared/group_tips'
|
2013-06-07 10:41:01 -04:00
|
|
|
|
2013-02-19 14:02:25 -05:00
|
|
|
.form-actions
|
2014-06-24 02:45:38 -04:00
|
|
|
= f.submit 'Create group', class: "btn btn-create", tabindex: 3
|
2015-12-02 08:31:15 -05:00
|
|
|
= link_to 'Cancel', dashboard_groups_path, class: 'btn btn-cancel'
|