debian-mirror-gitlab/app/views/projects/_new_project_fields.html.haml

61 lines
2.8 KiB
Text
Raw Normal View History

2018-03-17 18:26:18 +05:30
- visibility_level = params.dig(:project, :visibility_level) || default_project_visibility
2018-03-27 19:54:05 +05:30
- ci_cd_only = local_assigns.fetch(:ci_cd_only, false)
2018-03-17 18:26:18 +05:30
.row{ id: project_name_id }
2018-03-27 19:54:05 +05:30
= f.hidden_field :ci_cd_only, value: ci_cd_only
2018-03-17 18:26:18 +05:30
.form-group.project-path.col-sm-6
2018-11-18 11:00:15 +05:30
= f.label :namespace_id, class: 'label-bold' do
2018-03-17 18:26:18 +05:30
%span
Project path
.input-group
- if current_user.can_select_namespace?
2018-11-08 19:23:39 +05:30
.input-group-prepend.has-tooltip{ title: root_url }
.input-group-text
= root_url
2018-11-18 11:00:15 +05:30
- namespace_id = namespace_id_from(params)
= f.select(:namespace_id,
namespaces_options(namespace_id || :current_user,
display_path: true,
extra_group: namespace_id),
{},
{ class: 'select2 js-select-namespace qa-project-namespace-select', tabindex: 1})
2018-03-17 18:26:18 +05:30
- else
2018-11-08 19:23:39 +05:30
.input-group-prepend.static-namespace.has-tooltip{ title: user_url(current_user.username) + '/' }
.input-group-text.border-0
#{user_url(current_user.username)}/
2018-03-17 18:26:18 +05:30
= f.hidden_field :namespace_id, value: current_user.namespace_id
.form-group.project-path.col-sm-6
2018-11-18 11:00:15 +05:30
= f.label :path, class: 'label-bold' do
2018-03-17 18:26:18 +05:30
%span
Project name
= f.text_field :path, placeholder: "my-awesome-project", class: "form-control", tabindex: 2, autofocus: true, required: true
- if current_user.can_create_group?
2018-11-08 19:23:39 +05:30
.form-text.text-muted
2018-03-17 18:26:18 +05:30
Want to house several dependent projects under the same namespace?
= link_to "Create a group", new_group_path
.form-group
2018-11-18 11:00:15 +05:30
= f.label :description, class: 'label-bold' do
2018-03-17 18:26:18 +05:30
Project description
%span (optional)
= f.text_area :description, placeholder: 'Description format', class: "form-control", rows: 3, maxlength: 250
2018-11-18 11:00:15 +05:30
= f.label :visibility_level, class: 'label-bold' do
2018-11-08 19:23:39 +05:30
Visibility Level
= link_to icon('question-circle'), help_page_path("public_access/public_access"), aria: { label: 'Documentation for Visibility Level' }, target: '_blank', rel: 'noopener noreferrer'
= render 'shared/visibility_level', f: f, visibility_level: visibility_level.to_i, can_change_visibility_level: true, form_model: @project, with_label: false
.form-group.row.initialize-with-readme-setting
%div{ :class => "col-sm-12" }
.form-check
= check_box_tag 'project[initialize_with_readme]', '1', false, class: 'form-check-input'
= label_tag 'project[initialize_with_readme]', class: 'form-check-label' do
.option-title
%strong Initialize repository with a README
.option-description
Allows you to immediately clone this projects repository. Skip this if you plan to push up an existing repository.
2018-03-17 18:26:18 +05:30
= f.submit 'Create project', class: "btn btn-create project-submit", tabindex: 4
= link_to 'Cancel', dashboard_projects_path, class: 'btn btn-cancel'