2013-08-12 10:21:57 -04:00
|
|
|
.project-edit-container
|
2013-05-14 05:46:41 -04:00
|
|
|
.project-edit-errors
|
2013-05-14 05:56:03 -04:00
|
|
|
= render 'projects/errors'
|
2013-05-14 05:46:41 -04:00
|
|
|
.project-edit-content
|
2013-09-13 08:39:04 -04:00
|
|
|
|
2013-12-31 09:01:25 -05:00
|
|
|
= form_for @project, remote: true, html: { class: 'new_project form-horizontal' } do |f|
|
2013-12-30 18:27:02 -05:00
|
|
|
.form-group.project-name-holder
|
2013-12-31 09:01:25 -05:00
|
|
|
= f.label :name, class: 'control-label' do
|
2013-10-18 00:28:49 -04:00
|
|
|
%strong Project name
|
2013-12-30 18:27:02 -05:00
|
|
|
.col-sm-10
|
2013-12-31 09:01:25 -05:00
|
|
|
= f.text_field :name, placeholder: "Example Project", class: "form-control", tabindex: 1, autofocus: true
|
2013-05-14 05:46:41 -04:00
|
|
|
|
|
|
|
- if current_user.can_select_namespace?
|
2013-12-30 18:27:02 -05:00
|
|
|
.form-group
|
2013-12-31 09:01:25 -05:00
|
|
|
= f.label :namespace_id, class: 'control-label' do
|
2013-05-14 05:46:41 -04:00
|
|
|
%span Namespace
|
2013-12-30 18:27:02 -05:00
|
|
|
.col-sm-10
|
2014-01-11 05:11:54 -05:00
|
|
|
= f.select :namespace_id, namespaces_options(params[:namespace_id] || :current_user), {}, {class: 'select2', tabindex: 2}
|
2013-05-14 05:46:41 -04:00
|
|
|
|
2014-03-11 09:15:08 -04:00
|
|
|
%hr
|
|
|
|
.js-toggle-container
|
|
|
|
.form-group
|
|
|
|
.col-sm-2
|
|
|
|
.col-sm-10
|
|
|
|
= link_to "#", class: 'js-toggle-button' do
|
2014-03-11 12:23:03 -04:00
|
|
|
%i.icon-edit
|
2014-03-11 09:15:08 -04:00
|
|
|
%span Customize repository name?
|
|
|
|
.js-toggle-content.hide
|
|
|
|
.form-group
|
|
|
|
= f.label :path, class: 'control-label' do
|
|
|
|
%span Repository name
|
|
|
|
.col-sm-10
|
|
|
|
.input-group
|
|
|
|
= f.text_field :path, class: 'form-control'
|
|
|
|
%span.input-group-addon .git
|
|
|
|
|
|
|
|
.js-toggle-container
|
|
|
|
.form-group
|
|
|
|
.col-sm-2
|
|
|
|
.col-sm-10
|
|
|
|
= link_to "#", class: 'js-toggle-button' do
|
|
|
|
%i.icon-upload-alt
|
|
|
|
%span Import existing repository?
|
|
|
|
.js-toggle-content.hide
|
|
|
|
.form-group.import-url-data
|
|
|
|
= f.label :import_url, class: 'control-label' do
|
|
|
|
%span Import existing repo
|
|
|
|
.col-sm-10
|
|
|
|
= f.text_field :import_url, class: 'form-control', placeholder: 'https://github.com/randx/six.git'
|
2014-03-11 12:23:03 -04:00
|
|
|
%p.help-block
|
|
|
|
This url must be publicly accessible or you can add a username and password like this: https://username:password@gitlab.com/company/project.git.
|
|
|
|
%br
|
|
|
|
Import timeout is 2 minutes. For big repositories use clone/push combination.
|
2014-03-11 09:15:08 -04:00
|
|
|
%hr
|
|
|
|
|
2013-12-30 18:27:02 -05:00
|
|
|
.form-group
|
2013-12-31 09:01:25 -05:00
|
|
|
= f.label :description, class: 'control-label' do
|
2013-07-29 14:06:59 -04:00
|
|
|
Description
|
|
|
|
%span.light (optional)
|
2013-12-30 18:27:02 -05:00
|
|
|
.col-sm-10
|
2013-12-31 09:01:25 -05:00
|
|
|
= f.text_area :description, placeholder: "Awesome project", class: "form-control", rows: 3, maxlength: 250, tabindex: 3
|
2013-11-06 10:13:21 -05:00
|
|
|
= render "visibility_level", f: f, visibility_level: gitlab_config.default_projects_features.visibility_level, can_change_visibility_level: true
|
2013-05-14 05:46:41 -04:00
|
|
|
|
2013-08-01 09:20:18 -04:00
|
|
|
.form-actions
|
|
|
|
= f.submit 'Create project', class: "btn btn-create project-submit", tabindex: 4
|
2013-05-14 05:46:41 -04:00
|
|
|
|
2013-08-01 09:20:18 -04:00
|
|
|
- if current_user.can_create_group?
|
|
|
|
.pull-right
|
2013-12-31 09:01:25 -05:00
|
|
|
.light
|
2013-08-01 09:20:18 -04:00
|
|
|
Need a group for several dependent projects?
|
|
|
|
= link_to new_group_path, class: "btn btn-tiny" do
|
|
|
|
Create a group
|
2013-05-14 05:46:41 -04:00
|
|
|
|
2014-01-01 14:42:42 -05:00
|
|
|
.save-project-loader.hide
|
2012-01-27 17:51:02 -05:00
|
|
|
%center
|
2014-02-05 13:30:57 -05:00
|
|
|
%h2
|
|
|
|
%i.icon-spinner.icon-spin
|
|
|
|
Creating project & repository.
|
2013-08-12 10:21:57 -04:00
|
|
|
%p Please wait a moment, this page will automatically refresh when ready.
|