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

42 lines
1.1 KiB
Text
Raw Normal View History

2014-12-31 08:07:48 -05:00
%h3.page-title
2015-01-13 14:44:17 -05:00
%i.fa.fa-github
2015-02-17 10:59:50 -05:00
Import repositories from GitHub
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 'Import all projects', class: "btn btn-success js-import-all"
2015-01-13 14:44:17 -05:00
%table.table.import-jobs
2014-12-31 08:07:48 -05:00
%thead
%tr
%th From GitHub
%th To GitLab
%th Status
%tbody
2015-01-13 14:44:17 -05:00
- @already_added_projects.each do |project|
2015-01-20 14:52:55 -05:00
%tr{id: "project_#{project.id}", class: "#{project_status_css_class(project.import_status)}"}
2015-01-13 14:44:17 -05:00
%td= project.import_source
%td
2015-02-02 17:45:03 -05:00
%strong= link_to project.path_with_namespace, project
2015-01-20 14:52:55 -05:00
%td.job-status
2015-01-13 14:44:17 -05:00
- if project.import_status == 'finished'
%span.cgreen
%i.fa.fa-check
done
- else
= project.human_import_status_name
2014-12-31 08:07:48 -05:00
- @repos.each do |repo|
%tr{id: "repo_#{repo.id}"}
%td= repo.full_name
2015-01-13 14:44:17 -05:00
%td.import-target
2014-12-31 08:07:48 -05:00
= repo.full_name
2015-01-20 14:52:55 -05:00
%td.import-actions.job-status
= button_tag "Import", class: "btn js-add-to-import"
2015-01-13 14:44:17 -05:00
2014-12-31 08:07:48 -05:00
:coffeescript
2015-02-05 13:31:36 -05:00
$ ->
new ImporterStatus("#{jobs_import_github_path}", "#{import_github_path}")