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

31 lines
990 B
Plaintext
Raw Normal View History

2017-07-07 10:51:03 +00:00
- @breadcrumb_link = dashboard_groups_path
- breadcrumb_title "Groups"
- @hide_top_links = true
- 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 gl-show-field-errors' } do |f|
= form_errors(@group)
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
= render 'shared/visibility_level', f: f, visibility_level: default_group_visibility, can_change_visibility_level: true, form_model: @group
2016-03-01 15:22:29 +00:00
2017-02-07 07:24:57 +00:00
= render 'create_chat_team', f: f if Gitlab.config.mattermost.enabled
.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"
= link_to 'Cancel', dashboard_groups_path, class: 'btn btn-cancel'