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

31 lines
988 B
Plaintext
Raw Normal View History

2017-07-07 06:51:03 -04:00
- @breadcrumb_link = dashboard_groups_path
- breadcrumb_title "Groups"
- @hide_top_links = true
- page_title 'New Group'
2015-12-02 08:27:29 -05:00
- header_title "Groups", dashboard_groups_path
%h3.page-title
New Group
%hr
= form_for @group, html: { class: 'group-form gl-show-field-errors' } do |f|
= 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
.form-group.row.group-description-holder
= f.label :avatar, "Group avatar", class: 'col-form-label col-sm-2'
.col-sm-10
2014-10-20 17:29:49 -04:00
= render 'shared/choose_group_avatar_button', f: f
= 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
2017-02-07 02:24:57 -05:00
= render 'create_chat_team', f: f if Gitlab.config.mattermost.enabled
.form-group.row
.offset-sm-2.col-sm-10
2014-10-20 17:43:51 -04:00
= render 'shared/group_tips'
2013-02-19 14:02:25 -05:00
.form-actions
= f.submit 'Create group', class: "btn btn-create"
= link_to 'Cancel', dashboard_groups_path, class: 'btn btn-cancel'