Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_export.html.haml « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 58c760c54e8d08e6005da3dcb902ee7966808edc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
- return unless Gitlab::CurrentSettings.project_export_enabled?

- project = local_assigns.fetch(:project)

= render Pajamas::CardComponent.new(card_options: { class: 'gl-new-card', data: { qa_selector: 'export_project_content' } }, header_options: { class: 'gl-new-card-header' }, body_options: { class: 'gl-new-card-body gl-px-5 gl-py-4' }) do |c|
  - c.with_header do
    .gl-new-card-title-wrapper
      %h4.gl-new-card-title= _('Export project')

  - c.with_body do
    %p
      - link = link_to('', help_page_path('user/project/settings/import_export'), target: '_blank', rel: 'noopener noreferrer')
      = safe_format(_('Export this project with all its related data in order to move it to a new GitLab instance. When the exported file is ready, you can download it from this page or from the download link in the email notification you will receive. You can then import it when creating a new project. %{link_start}Learn more.%{link_end}'), tag_pair(link, :link_start, :link_end))
    .gl-mb-0
      %p.gl-font-weight-bold= _('The following items will be exported:')
      %ul
        - project_export_descriptions.each do |desc|
          %li= desc
      %p.gl-font-weight-bold= _('The following items will NOT be exported:')
      %ul
        %li= _('Job logs and artifacts')
        %li= _('Container registry images')
        %li= _('CI variables')
        %li= _('Pipeline triggers')
        %li= _('Webhooks')
        %li= _('Any encrypted tokens')
    - if project.export_status == :finished
      = render Pajamas::ButtonComponent.new(href: download_export_project_path(project),
        method: :get,
        button_options: { ref: 'nofollow', download: '', data: { qa_selector: 'download_export_link' } }) do
        = _('Download export')
      = render Pajamas::ButtonComponent.new(href: generate_new_export_project_path(project), method: :post) do
        = _('Generate new export')
    - else
      = render Pajamas::ButtonComponent.new(href: export_project_path(project), method: :post, button_options: { data: { qa_selector: 'export_project_link' } }) do
        = _('Export project')