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: 224962df013059bbe97522ecc1f2406d8d5fb083 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
%h3.page_title New Group
%hr
= form_for @group do |f|
  - if @group.errors.any?
    .alert-message.block-message.error
      %span= @group.errors.full_messages.first
  .clearfix
    = f.label :name do
      Group name is
    .input
      = f.text_field :name, placeholder: "Ex. OpenSource", class: "xxlarge left"
       
      = f.submit 'Create group', class: "btn btn-create"
  %hr
  .padded
    %ul
      %li Group is kind of directory for several projects
      %li All created groups are private
      %li People within a group see only projects they have access to
      %li All projects of group will be stored in group directory
      %li You will be able to move existing projects into group