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

67 lines
4.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)
- 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
2018-11-20 20:47:30 +05:30
.form-group.project-name.col-sm-12
= f.label :name, class: 'label-bold' do
%span= _("Project name")
2021-06-08 01:23:25 +05:30
= f.text_field :name, placeholder: "My awesome project", class: "form-control gl-form-input input-lg", autofocus: true, data: { track_label: "#{track_label}", track_event: "activate_form_input", track_property: "project_name", track_value: "" }, required: true, aria: { required: true }
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-11-20 20:47:30 +05:30
%span= s_("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?
2019-07-07 11:18:12 +05:30
.input-group-prepend.flex-shrink-0.has-tooltip{ title: root_url }
2018-11-08 19:23:39 +05:30
.input-group-text
= root_url
2018-11-18 11:00:15 +05:30
- namespace_id = namespace_id_from(params)
= f.select(:namespace_id,
2019-07-07 11:18:12 +05:30
namespaces_options_with_developer_maintainer_access(selected: namespace_id,
display_path: true,
extra_group: namespace_id),
2018-11-18 11:00:15 +05:30
{},
2020-06-23 00:09:42 +05:30
{ class: 'select2 js-select-namespace qa-project-namespace-select block-truncated', data: { track_label: "#{track_label}", track_event: "activate_form_input", track_property: "project_path", track_value: "" }})
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
.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")
2021-06-08 01:23:25 +05:30
= f.text_field :path, placeholder: "my-awesome-project", class: "form-control gl-form-input", required: true, aria: { required: true }
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 }
- project_tip = s_('ProjectsNew|Want to house several dependent projects under the same namespace? %{link_start}Create a group.%{link_end}') % { link_start: link_start_group_path, link_end: '</a>' }
= project_tip.html_safe
2018-03-17 18:26:18 +05:30
.form-group
2018-11-18 11:00:15 +05:30
= f.label :description, class: 'label-bold' do
2019-09-30 21:07:59 +05:30
= s_('ProjectsNew|Project description %{tag_start}(optional)%{tag_end}').html_safe % { tag_start: '<span>'.html_safe, tag_end: '</span>'.html_safe }
2021-06-08 01:23:25 +05:30
= f.text_area :description, placeholder: s_('ProjectsNew|Description format'), class: "form-control gl-form-input", rows: 3, maxlength: 250, data: { track_label: "#{track_label}", track_event: "activate_form_input", track_property: "project_description", track_value: "" }
2018-03-17 18:26:18 +05:30
2018-11-18 11:00:15 +05:30
= f.label :visibility_level, class: 'label-bold' do
2019-09-30 21:07:59 +05:30
= s_('ProjectsNew|Visibility Level')
2020-11-24 15:15:51 +05:30
= link_to sprite_icon('question-o'), help_page_path('public_access/public_access'), aria: { label: 'Documentation for Visibility Level' }, target: '_blank', rel: 'noopener noreferrer'
2018-11-08 19:23:39 +05:30
= render 'shared/visibility_level', f: f, visibility_level: visibility_level.to_i, can_change_visibility_level: true, form_model: @project, with_label: false
2018-12-05 23:21:45 +05:30
- if !hide_init_with_readme
.form-group.row.initialize-with-readme-setting
%div{ :class => "col-sm-12" }
.form-check
2021-03-11 19:13:27 +05:30
- experiment(:new_project_readme, actor: current_user) do |e|
2021-04-17 20:07:23 +05:30
= check_box_tag 'project[initialize_with_readme]', '1', e.run, class: 'form-check-input', data: { qa_selector: "initialize_with_readme_checkbox", track_label: "#{track_label}", track_event: "activate_form_input", track_property: "init_with_readme", track_value: "" }
2018-12-05 23:21:45 +05:30
= label_tag 'project[initialize_with_readme]', class: 'form-check-label' do
.option-title
2019-09-30 21:07:59 +05:30
%strong= s_('ProjectsNew|Initialize repository with a README')
2018-12-05 23:21:45 +05:30
.option-description
2019-09-30 21:07:59 +05:30
= s_('ProjectsNew|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
2021-04-29 21:17:54 +05:30
= f.submit _('Create project'), class: "btn gl-button btn-confirm", data: { track_label: "#{track_label}", track_event: "click_button", track_property: "create_project", track_value: "" }
2021-03-11 19:13:27 +05:30
= link_to _('Cancel'), dashboard_projects_path, class: 'btn gl-button btn-default btn-cancel', data: { track_label: "#{track_label}", track_event: "click_button", track_property: "cancel", track_value: "" }