2020-10-28 17:08:42 -04:00
|
|
|
- return unless can?(current_user, :change_namespace, @project)
|
2021-12-09 19:13:05 -05:00
|
|
|
- form_id = "transfer-project-form"
|
|
|
|
- hidden_input_id = "new_namespace_id"
|
|
|
|
- initial_data = { namespaces: namespaces_as_json, button_text: s_('ProjectSettings|Transfer project'), confirm_danger_message: transfer_project_message(@project), phrase: @project.name, target_form_id: form_id, target_hidden_input_id: hidden_input_id }
|
2020-10-28 17:08:42 -04:00
|
|
|
|
|
|
|
.sub-section
|
|
|
|
%h4.danger-title= _('Transfer project')
|
2021-12-09 19:13:05 -05:00
|
|
|
= form_for @project, url: transfer_project_path(@project), method: :put, html: { class: 'js-project-transfer-form', id: form_id } do |f|
|
2020-10-28 17:08:42 -04:00
|
|
|
.form-group
|
2021-01-29 10:09:40 -05:00
|
|
|
- link_start = '<a href="%{url}" target="_blank" rel="noopener noreferrer">'.html_safe % { url: help_page_path('user/project/settings/index', anchor: 'transferring-an-existing-project-into-another-namespace') }
|
|
|
|
%p= _("Transfer your project into another namespace. %{link_start}Learn more.%{link_end}").html_safe % { link_start: link_start, link_end: '</a>'.html_safe }
|
2020-10-28 17:08:42 -04:00
|
|
|
%ul
|
|
|
|
%li= _("Be careful. Changing the project's namespace can have unintended side effects.")
|
|
|
|
%li= _('You can only transfer the project to namespaces you manage.')
|
|
|
|
%li= _('You will need to update your local repositories to point to the new location.')
|
|
|
|
%li= _('Project visibility level will be changed to match namespace rules when transferring to a group.')
|
2021-12-09 19:13:05 -05:00
|
|
|
= hidden_field_tag(hidden_input_id)
|
2021-01-29 10:09:40 -05:00
|
|
|
= label_tag :new_namespace_id, _('Select a new namespace'), class: 'gl-font-weight-bold'
|
2021-12-09 19:13:05 -05:00
|
|
|
.js-transfer-project-form{ data: initial_data }
|