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

47 lines
1.4 KiB
Plaintext
Raw Normal View History

2014-12-31 13:07:48 +00:00
%h3.page-title
2015-02-17 15:59:50 +00:00
%i.fa.fa-heart
2015-01-27 23:37:19 +00:00
Import repositories from GitLab.com
2014-12-31 13:07:48 +00:00
2015-01-13 19:44:17 +00:00
%p.light
Select projects you want to import.
2015-01-13 19:44:17 +00:00
%hr
%p
= button_tag 'Import all projects', class: "btn btn-success js-import-all"
2015-01-13 19:44:17 +00:00
%table.table.import-jobs
2014-12-31 13:07:48 +00:00
%thead
%tr
2015-01-27 23:37:19 +00:00
%th From GitLab.com
%th To this GitLab instance
2014-12-31 13:07:48 +00:00
%th Status
%tbody
2015-01-13 19:44:17 +00:00
- @already_added_projects.each do |project|
2015-01-20 19:52:55 +00:00
%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"
2015-01-13 19:44:17 +00:00
%td
2015-02-02 22:45:03 +00:00
%strong= link_to project.path_with_namespace, project
2015-01-20 19:52:55 +00:00
%td.job-status
2015-01-13 19:44:17 +00:00
- if project.import_status == 'finished'
%span.cgreen
%i.fa.fa-check
done
- elsif project.import_status == 'started'
%i.fa.fa-spinner.fa-spin
started
2015-01-13 19:44:17 +00:00
- else
= project.human_import_status_name
2014-12-31 13:07:48 +00:00
- @repos.each do |repo|
2015-01-27 23:37:19 +00:00
%tr{id: "repo_#{repo["id"]}"}
%td
= link_to repo["path_with_namespace"], "https://gitlab.com/#{repo["path_with_namespace"]}", target: "_blank"
2015-01-13 19:44:17 +00:00
%td.import-target
2015-01-27 23:37:19 +00:00
= repo["path_with_namespace"]
2015-01-20 19:52:55 +00:00
%td.import-actions.job-status
= button_tag "Import", class: "btn js-add-to-import"
2015-01-13 19:44:17 +00:00
2014-12-31 13:07:48 +00:00
:coffeescript
$ ->
new ImporterStatus("#{jobs_import_gitlab_path}", "#{import_gitlab_path}")