fb5c1dd8f0
Factor group forms
19 lines
562 B
Text
19 lines
562 B
Text
= form_for @group, html: { class: 'group-form form-horizontal' } do |f|
|
|
- if @group.errors.any?
|
|
.alert.alert-danger
|
|
%span= @group.errors.full_messages.first
|
|
|
|
= render 'shared/group_form', f: f, autofocus: true
|
|
|
|
.form-group.group-description-holder
|
|
= f.label :avatar, "Group avatar", class: 'control-label'
|
|
.col-sm-10
|
|
= render 'shared/choose_group_avatar_button', f: f
|
|
|
|
.form-group
|
|
.col-sm-2
|
|
.col-sm-10
|
|
= render 'shared/group_tips'
|
|
|
|
.form-actions
|
|
= f.submit 'Create group', class: "btn btn-create", tabindex: 3
|