95e6a5dcd3
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
31 lines
1 KiB
Text
31 lines
1 KiB
Text
%h3.page-title New Group
|
|
%hr
|
|
= form_for [:admin, @group], html: { class: 'group-form form-horizontal' } do |f|
|
|
- if @group.errors.any?
|
|
.alert.alert-danger
|
|
%span= @group.errors.full_messages.first
|
|
.form-group
|
|
= f.label :name, class: 'control-label' do
|
|
Group name
|
|
.col-sm-10
|
|
= f.text_field :name, placeholder: "Ex. OpenSource", class: "form-control"
|
|
|
|
.form-group.group-description-holder
|
|
= f.label :description, "Details", class: 'control-label'
|
|
.col-sm-10
|
|
= f.text_area :description, maxlength: 250, class: "form-control js-gfm-input", rows: 4
|
|
|
|
.form-group
|
|
.col-sm-2
|
|
.col-sm-10
|
|
%ul
|
|
%li A group is a collection of several projects
|
|
%li Groups are private by default
|
|
%li Members of a group may only view projects they have permission to access
|
|
%li Group project URLs are prefixed with the group namespace
|
|
%li Existing projects may be moved into a group
|
|
|
|
.form-actions
|
|
= f.submit 'Create group', class: "btn btn-create"
|
|
|
|
|