gitlab-org--gitlab-foss/app/views/import/gitlab/status.html.haml

55 lines
1.9 KiB
Text
Raw Normal View History

2015-04-30 13:06:18 -04:00
- page_title "GitLab.com import"
2015-12-02 08:54:24 -05:00
- header_title "Projects", root_path
2014-12-31 08:07:48 -05:00
%h3.page-title
2015-02-17 10:59:50 -05:00
%i.fa.fa-heart
2015-02-18 16:42:52 -05:00
Import projects from GitLab.com
2014-12-31 08:07:48 -05:00
2015-01-13 14:44:17 -05:00
%p.light
Select projects you want to import.
2015-01-13 14:44:17 -05:00
%hr
%p
= button_tag class: "btn btn-import btn-success js-import-all" do
Import all projects
2016-04-14 04:32:02 -04:00
= icon("spinner spin", class: "loading-icon")
.table-responsive
2015-10-19 05:19:45 -04:00
%table.table.import-jobs
%colgroup.import-jobs-from-col
%colgroup.import-jobs-to-col
%colgroup.import-jobs-status-col
2015-10-19 05:19:45 -04:00
%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)}" }
2015-10-19 05:19:45 -04:00
%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]
2015-10-19 05:19:45 -04:00
%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
2015-01-13 14:44:17 -05:00
2015-10-19 05:19:45 -04:00
- @repos.each do |repo|
%tr{ id: "repo_#{repo["id"]}" }
2015-10-19 05:19:45 -04:00
%td
= link_to repo["path_with_namespace"], "https://gitlab.com/#{repo["path_with_namespace"]}", target: "_blank", rel: 'noopener noreferrer'
2015-10-19 05:19:45 -04:00
%td.import-target
= import_project_target(repo['namespace']['path'], repo['name'])
2015-10-19 05:19:45 -04:00
%td.import-actions.job-status
= button_tag class: "btn btn-import js-add-to-import" do
Import
2016-04-14 04:32:02 -04:00
= icon("spinner spin", class: "loading-icon")
2015-01-13 14:44:17 -05:00
.js-importer-status{ data: { jobs_import_path: "#{jobs_import_gitlab_path}", import_path: "#{import_gitlab_path}" } }