gitlab-org--gitlab-foss/app/views/groups/new.html.haml

27 lines
744 B
Plaintext
Raw Normal View History

- page_title 'New Group'
2015-12-02 13:27:29 +00:00
- header_title "Groups", dashboard_groups_path
%h3.page-title
New Group
%hr
= form_for @group, html: { class: 'group-form form-horizontal' } do |f|
2013-01-24 15:47:09 +00:00
- if @group.errors.any?
.alert.alert-danger
2013-01-24 15:47:09 +00:00
%span= @group.errors.full_messages.first
2013-02-19 19:02:25 +00:00
2014-10-20 22:25:44 +00:00
= render 'shared/group_form', f: f, autofocus: true
2013-02-19 19:02:25 +00:00
.form-group.group-description-holder
= f.label :avatar, "Group avatar", class: 'control-label'
.col-sm-10
2014-10-20 21:29:49 +00:00
= render 'shared/choose_group_avatar_button', f: f
.form-group
.col-sm-offset-2.col-sm-10
2014-10-20 21:43:51 +00:00
= render 'shared/group_tips'
2013-02-19 19:02:25 +00:00
.form-actions
= f.submit 'Create group', class: "btn btn-create", tabindex: 3
= link_to 'Cancel', dashboard_groups_path, class: 'btn btn-cancel'