Welcome to mirror list, hosted at ThFree Co, Russian Federation.

new.html.haml « groups « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4bc31cabea61def06d9e0e50420ba3dce7c23548 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
- page_title    'New Group'
- header_title  "Groups", dashboard_groups_path

%h3.page-title
  New Group
%hr

= 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-offset-2.col-sm-10
      = render 'shared/group_tips'

  .form-actions
    = f.submit 'Create group', class: "btn btn-create", tabindex: 3
    = link_to 'Cancel', dashboard_groups_path, class: 'btn btn-cancel'