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
2014-11-29 14:34:18 -05:00
= form_for @project, html: { class: 'new_project form-horizontal' } do |f|
2013-12-30 18:27:02 -05:00
.form-group.project-name-holder
2014-12-22 06:27:48 -05:00
= f.label :path, class: 'control-label' do
2014-12-22 06:50:58 -05:00
%strong Project path
2013-12-30 18:27:02 -05:00
.col-sm-10
2014-12-22 06:27:48 -05:00
.input-group
= f.text_field :path, placeholder: "my-awesome-project", class: "form-control", tabindex: 1, autofocus: true
.input-group-addon
\.git
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
2015-03-19 10:06:05 -04:00
.project-import.js-toggle-container
2014-03-11 09:15:08 -04:00
.form-group
2015-03-19 10:06:05 -04:00
%label.control-label Import project from
2014-03-11 09:15:08 -04:00
.col-sm-10
2015-03-19 10:06:05 -04:00
- if github_import_enabled?
= link_to status_import_github_path, class: 'btn' do
%i.fa.fa-github
GitHub
- else
= link_to '#', class: 'how_to_import_link light btn' do
%i.fa.fa-github
GitHub
= render 'github_import_modal'
- if bitbucket_import_enabled?
= link_to status_import_bitbucket_path, class: 'btn' do
%i.fa.fa-bitbucket
Bitbucket
- else
= link_to '#', class: 'how_to_import_link light btn' do
%i.fa.fa-bitbucket
Bitbucket
= render 'bitbucket_import_modal'
- unless request.host == 'gitlab.com'
- if gitlab_import_enabled?
= link_to status_import_gitlab_path, class: 'btn' do
%i.fa.fa-heart
GitLab.com
- else
= link_to '#', class: 'how_to_import_link light btn' do
%i.fa.fa-heart
GitLab.com
= render 'gitlab_import_modal'
= link_to new_import_gitorious_path, class: 'btn' do
%i.icon-gitorious.icon-gitorious-small
Gitorious.org
= link_to "#", class: 'btn js-toggle-button' do
%i.fa.fa-git
2015-03-19 10:43:49 -04:00
%span Any repo by URL
2015-03-19 10:06:05 -04:00
2014-03-11 09:15:08 -04:00
.js-toggle-content.hide
.form-group.import-url-data
= f.label :import_url, class: 'control-label' do
2015-03-19 10:06:05 -04:00
%span Git repository URL
2014-03-11 09:15:08 -04:00
.col-sm-10
2015-03-19 10:43:49 -04:00
= f.text_field :import_url, class: 'form-control', placeholder: 'https://username:password@gitlab.company.com/group/project.git'
2015-03-26 02:07:59 -04:00
.well.prepend-top-20
2015-03-19 10:43:49 -04:00
%ul
2015-03-22 11:24:23 -04:00
%li
2015-03-19 10:43:49 -04:00
The repository must be accessible over HTTP(S). If it is not publicly accessible, you can add authentication information to the URL: <code>https://username:password@gitlab.company.com/group/project.git</code>.
2015-03-22 11:24:23 -04:00
%li
2015-03-19 10:43:49 -04:00
The import will time out after 4 minutes. For big repositories, use a clone/push combination.
%li
To migrate an SVN repository, check out #{link_to "this document", "http://doc.gitlab.com/ce/workflow/migrating_from_svn.html"}.
2015-01-13 13:34:01 -05:00
2014-12-31 08:07:48 -05:00
%hr.prepend-botton-10
2014-03-11 09:15:08 -04:00
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?
2015-03-14 03:29:32 -04:00
= link_to new_group_path, class: "btn btn-xs" do
2013-08-01 09:20:18 -04:00
Create a group
2013-05-14 05:46:41 -04:00
2014-01-01 14:42:42 -05:00
.save-project-loader.hide
2014-06-21 03:41:44 -04:00
.center
2014-02-05 13:30:57 -05:00
%h2
2014-10-01 18:21:29 -04:00
%i.fa.fa-spinner.fa-spin
2014-02-05 13:30:57 -05:00
Creating project & repository.
2013-08-12 10:21:57 -04:00
%p Please wait a moment, this page will automatically refresh when ready.
2015-02-05 13:31:36 -05:00
:coffeescript
2015-03-26 00:45:01 -04:00
$('.how_to_import_link').bind 'click', (e) ->
e.preventDefault()
import_modal = $(this).next(".modal").show()
$('.modal-header .close').bind 'click', ->
$(".modal").hide()