2013-01-24 10:47:09 -05:00
|
|
|
= form_for @group do |f|
|
|
|
|
- if @group.errors.any?
|
2013-01-30 09:53:18 -05:00
|
|
|
.alert.alert-error
|
2013-01-24 10:47:09 -05:00
|
|
|
%span= @group.errors.full_messages.first
|
2013-08-07 16:24:34 -04:00
|
|
|
.control-group
|
2013-01-24 10:47:09 -05:00
|
|
|
= f.label :name do
|
|
|
|
Group name is
|
2013-08-07 16:24:34 -04:00
|
|
|
.controls
|
2013-08-07 16:40:29 -04:00
|
|
|
= f.text_field :name, placeholder: "Ex. OpenSource", class: "input-xxlarge left"
|
2013-02-19 14:02:25 -05:00
|
|
|
|
2013-08-07 16:24:34 -04:00
|
|
|
.control-group.group-description-holder
|
2013-02-19 14:02:25 -05:00
|
|
|
= f.label :description, "Details"
|
2013-08-07 16:24:34 -04:00
|
|
|
.controls
|
2013-08-07 16:40:29 -04:00
|
|
|
= f.text_area :description, maxlength: 250, class: "input-xxlarge js-gfm-input", rows: 4
|
2013-02-19 14:02:25 -05:00
|
|
|
|
2013-08-07 16:24:34 -04:00
|
|
|
.control-group
|
|
|
|
.controls
|
2013-06-07 10:41:01 -04:00
|
|
|
%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 a group directory
|
|
|
|
%li You will be able to move existing projects into group
|
|
|
|
|
2013-02-19 14:02:25 -05:00
|
|
|
.form-actions
|
2013-03-01 09:26:26 -05:00
|
|
|
= f.submit 'Create group', class: "btn btn-create"
|
2013-02-19 14:02:25 -05:00
|
|
|
|
|
|
|
|