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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

102 lines
7 KiB
Text
Raw Normal View History

2019-09-04 21:01:54 +05:30
- visibility_level = selected_visibility_level(@project, params.dig(:project, :visibility_level))
2018-03-27 19:54:05 +05:30
- ci_cd_only = local_assigns.fetch(:ci_cd_only, false)
2018-12-05 23:21:45 +05:30
- hide_init_with_readme = local_assigns.fetch(:hide_init_with_readme, false)
2022-08-27 11:52:29 +05:30
- include_description = local_assigns.fetch(:include_description, true)
2018-12-05 23:21:45 +05:30
- track_label = local_assigns.fetch(:track_label, 'blank_project')
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
2023-04-23 21:23:45 +05:30
.form-group.gl-form-group.project-name.col-sm-12
2018-11-20 20:47:30 +05:30
= f.label :name, class: 'label-bold' do
%span= _("Project name")
2022-05-07 20:08:51 +05:30
= f.text_field :name, placeholder: "My awesome project", class: "form-control gl-form-input input-lg", data: { qa_selector: 'project_name', track_label: "#{track_label}", track_action: "activate_form_input", track_property: "project_name", track_value: "" }, required: true, aria: { required: true }
2023-04-23 21:23:45 +05:30
%small#js-project-name-description.form-text.text-gl-muted
= s_("ProjectsNew|Must start with a lowercase or uppercase letter, digit, emoji, or underscore. Can also contain dots, pluses, dashes, or spaces.")
#js-project-name-error.gl-field-error.gl-mt-2.gl-display-none
2022-06-21 17:19:12 +05:30
.form-group.project-path.col-sm-6.gl-pr-0
2018-11-18 11:00:15 +05:30
= f.label :namespace_id, class: 'label-bold' do
2021-11-11 11:23:49 +05:30
%span= _('Project URL')
2021-04-29 21:17:54 +05:30
.input-group.gl-flex-nowrap
2018-03-17 18:26:18 +05:30
- if current_user.can_select_namespace?
2018-11-18 11:00:15 +05:30
- namespace_id = namespace_id_from(params)
2022-06-21 17:19:12 +05:30
.js-vue-new-project-url-select{ data: { namespace_full_path: GroupFinder.new(current_user).execute(id: namespace_id)&.full_path || @current_user_group&.full_path,
namespace_id: namespace_id || @current_user_group&.id,
2023-03-04 22:38:38 +05:30
input_id: 'project_namespace_id',
input_name: 'project[namespace_id]',
2022-03-02 08:16:31 +05:30
root_url: root_url,
track_label: track_label,
user_namespace_id: current_user.namespace.id } }
2018-03-17 18:26:18 +05:30
- else
2019-07-07 11:18:12 +05:30
.input-group-prepend.static-namespace.flex-shrink-0.has-tooltip{ title: user_url(current_user.username) + '/' }
2018-11-08 19:23:39 +05:30
.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
2022-06-21 17:19:12 +05:30
.gl-align-self-center.gl-pl-5 /
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 :path, class: 'label-bold' do
2018-11-20 20:47:30 +05:30
%span= _("Project slug")
2022-05-07 20:08:51 +05:30
= f.text_field :path, placeholder: "my-awesome-project", class: "form-control gl-form-input", required: true, aria: { required: true }, data: { qa_selector: 'project_path', username: current_user.username }
2022-06-21 17:19:12 +05:30
.js-group-namespace-error.form-text.gl-text-red-500.gl-display-none
= s_('ProjectsNew|Pick a group or namespace where you want to create this project.')
2018-03-17 18:26:18 +05:30
- if current_user.can_create_group?
2018-11-08 19:23:39 +05:30
.form-text.text-muted
2019-09-30 21:07:59 +05:30
- link_start_group_path = '<a href="%{path}">' % { path: new_group_path }
2022-08-13 15:12:31 +05:30
- project_tip = s_('ProjectsNew|Want to organize several dependent projects under the same namespace? %{link_start}Create a group.%{link_end}') % { link_start: link_start_group_path, link_end: '</a>' }
2019-09-30 21:07:59 +05:30
= project_tip.html_safe
2022-07-23 23:45:48 +05:30
= render Pajamas::AlertComponent.new(alert_options: { class: "gl-mb-4 gl-display-none js-user-readme-repo" },
2022-06-21 17:19:12 +05:30
dismissible: false,
2022-07-16 23:28:13 +05:30
variant: :success) do |c|
= c.body do
2022-01-26 12:08:38 +05:30
- help_link_start = '<a href="%{url}" target="_blank" rel="noopener noreferrer">'.html_safe % { url: help_page_path('user/profile/index', anchor: 'add-details-to-your-profile-with-a-readme') }
2021-12-11 22:18:48 +05:30
= html_escape(_('%{project_path} is a project that you can use to add a README to your GitLab profile. Create a public project and initialize the repository with a README to get started. %{help_link_start}Learn more.%{help_link_end}')) % { project_path: "<strong>#{current_user.username} / #{current_user.username}</strong>".html_safe, help_link_start: help_link_start, help_link_end: '</a>'.html_safe }
2018-03-17 18:26:18 +05:30
2022-08-27 11:52:29 +05:30
- if include_description
.form-group
= f.label :description, class: 'label-bold' do
= s_('ProjectsNew|Project description %{tag_start}(optional)%{tag_end}').html_safe % { tag_start: '<span>'.html_safe, tag_end: '</span>'.html_safe }
= f.text_area :description,
placeholder: s_('ProjectsNew|Description format'),
class: "form-control gl-form-input",
rows: 3,
maxlength: 250,
data: { qa_selector: 'project_description',
track_label: track_label,
track_action: "activate_form_input",
track_property: "project_description" }
2018-03-17 18:26:18 +05:30
2022-06-21 17:19:12 +05:30
- unless Gitlab::CurrentSettings.current_application_settings.hide_third_party_offers? || !Gitlab.com?
2022-05-07 20:08:51 +05:30
.js-deployment-target-select
2022-04-04 11:22:00 +05:30
2022-08-13 15:12:31 +05:30
.form-group.gl-form-group
= f.label :visibility_level, class: 'label-bold' do
= s_('ProjectsNew|Visibility Level')
= link_to sprite_icon('question-o'), help_page_path('user/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, data: { qa_selector: 'visibility_radios'}
2018-11-08 19:23:39 +05:30
2018-12-05 23:21:45 +05:30
- if !hide_init_with_readme
2021-11-18 22:05:49 +05:30
= f.label :project_configuration, class: 'label-bold' do
= s_('ProjectsNew|Project Configuration')
.form-group
2022-08-27 11:52:29 +05:30
= render Pajamas::CheckboxTagComponent.new(name: 'project[initialize_with_readme]',
checked: true,
checkbox_options: { data: { qa_selector: 'initialize_with_readme_checkbox', track_label: track_label, track_action: 'activate_form_input', track_property: 'init_with_readme' } }) do |c|
= c.label do
= s_('ProjectsNew|Initialize repository with a README')
= c.help_text do
2021-11-18 22:05:49 +05:30
= s_('ProjectsNew|Allows you to immediately clone this projects repository. Skip this if you plan to push up an existing repository.')
2022-06-21 17:19:12 +05:30
.form-group
2022-08-27 11:52:29 +05:30
= render Pajamas::CheckboxTagComponent.new(name: 'project[initialize_with_sast]',
checkbox_options: { data: { qa_selector: 'initialize_with_sast_checkbox', track_label: track_label, track_action: 'activate_form_input', track_property: 'init_with_sast' } }) do |c|
= c.label do
2022-06-21 17:19:12 +05:30
= s_('ProjectsNew|Enable Static Application Security Testing (SAST)')
2022-08-27 11:52:29 +05:30
= c.help_text do
2022-06-21 17:19:12 +05:30
= s_('ProjectsNew|Analyze your source code for known security vulnerabilities.')
= link_to _('Learn more.'), help_page_path('user/application_security/sast/index'), target: '_blank', rel: 'noopener noreferrer', data: { track_action: 'followed' }
2018-03-17 18:26:18 +05:30
2022-08-13 15:12:31 +05:30
-# this partial is from JiHu, see details in https://jihulab.com/gitlab-cn/gitlab/-/merge_requests/675
= render_if_exists 'shared/other_project_options', f: f, visibility_level: visibility_level, track_label: track_label
2022-11-25 23:54:43 +05:30
= f.submit _('Create project'), class: "js-create-project-button", data: { qa_selector: 'project_create_button', track_label: "#{track_label}", track_action: "click_button", track_property: "create_project", track_value: "" }, pajamas_button: true
2021-11-11 11:23:49 +05:30
= link_to _('Cancel'), dashboard_projects_path, class: 'btn gl-button btn-default btn-cancel', data: { track_label: "#{track_label}", track_action: "click_button", track_property: "cancel", track_value: "" }