summaryrefslogtreecommitdiff
path: root/app/views/import/gitlab/status.html.haml
blob: b7bfbae5edf5d6cf3f5751c32c3e266dd796b32d (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
- page_title _("GitLab.com import")
- header_title _("Projects"), root_path
%h3.page-title
  %i.fa.fa-heart
  = _('Import projects from GitLab.com')

%p.light
  = _('Select projects you want to import.')
%hr
%p
  = button_tag class: "btn btn-import btn-success js-import-all" do
    = _('Import all projects')
    = icon("spinner spin", class: "loading-icon")

.table-responsive
  %table.table.import-jobs
    %colgroup.import-jobs-from-col
    %colgroup.import-jobs-to-col
    %colgroup.import-jobs-status-col
    %thead
      %tr
        %th= _('From GitLab.com')
        %th= _('To this GitLab instance')
        %th= _('Status')
    %tbody
      - @already_added_projects.each do |project|
        %tr{ id: "project_#{project.id}", class: "#{project_status_css_class(project.import_status)}" }
          %td
            = link_to project.import_source, "https://gitlab.com/#{project.import_source}", target: "_blank"
          %td
            = link_to project.full_path, [project.namespace.becomes(Namespace), project]
          %td.job-status
            - if project.import_status == 'finished'
              %span
                %i.fa.fa-check
                = _('done')
            - elsif project.import_status == 'started'
              %i.fa.fa-spinner.fa-spin
              = _('started')
            - else
              = project.human_import_status_name

      - @repos.each do |repo|
        %tr{ id: "repo_#{repo["id"]}" }
          %td
            = link_to repo["path_with_namespace"], "https://gitlab.com/#{repo["path_with_namespace"]}", target: "_blank", rel: 'noopener noreferrer'
          %td.import-target
            = import_project_target(repo['namespace']['path'], repo['name'])
          %td.import-actions.job-status
            = button_tag class: "btn btn-import js-add-to-import" do
              = _('Import')
              = icon("spinner spin", class: "loading-icon")

.js-importer-status{ data: { jobs_import_path: "#{jobs_import_gitlab_path}", import_path: "#{import_gitlab_path}" } }