debian-mirror-gitlab/app/views/import/bitbucket/status.html.haml

78 lines
2.9 KiB
Text
Raw Normal View History

2015-09-11 14:41:01 +05:30
- page_title "Bitbucket import"
2015-12-23 02:04:40 +05:30
- header_title "Projects", root_path
2015-04-26 12:48:37 +05:30
%h3.page-title
%i.fa.fa-bitbucket
Import projects from Bitbucket
2015-09-11 14:41:01 +05:30
- if @repos.any?
%p.light
Select projects you want to import.
%hr
%p
- if @incompatible_repos.any?
2016-06-02 11:05:42 +05:30
= button_tag class: "btn btn-import btn-success js-import-all" do
Import all compatible projects
= icon("spinner spin", class: "loading-icon")
2015-09-11 14:41:01 +05:30
- else
2016-06-02 11:05:42 +05:30
= button_tag class: "btn btn-success js-import-all" do
Import all projects
= icon("spinner spin", class: "loading-icon")
2015-09-11 14:41:01 +05:30
2016-06-02 11:05:42 +05:30
.table-responsive
2015-11-26 14:37:03 +05:30
%table.table.import-jobs
2016-06-02 11:05:42 +05:30
%colgroup.import-jobs-from-col
%colgroup.import-jobs-to-col
%colgroup.import-jobs-status-col
2015-11-26 14:37:03 +05:30
%thead
%tr
%th From Bitbucket
%th To GitLab
%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://bitbucket.org/#{project.import_source}", target: "_blank"
%td
2016-06-02 11:05:42 +05:30
= link_to project.path_with_namespace, [project.namespace.becomes(Namespace), project]
2015-11-26 14:37:03 +05:30
%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-04-26 12:48:37 +05:30
2015-11-26 14:37:03 +05:30
- @repos.each do |repo|
%tr{id: "repo_#{repo["owner"]}___#{repo["slug"]}"}
%td
= link_to "#{repo["owner"]}/#{repo["slug"]}", "https://bitbucket.org/#{repo["owner"]}/#{repo["slug"]}", target: "_blank"
%td.import-target
= "#{repo["owner"]}/#{repo["slug"]}"
%td.import-actions.job-status
2016-06-02 11:05:42 +05:30
= button_tag class: "btn btn-import js-add-to-import" do
Import
= icon("spinner spin", class: "loading-icon")
2015-11-26 14:37:03 +05:30
- @incompatible_repos.each do |repo|
%tr{id: "repo_#{repo["owner"]}___#{repo["slug"]}"}
%td
= link_to "#{repo["owner"]}/#{repo["slug"]}", "https://bitbucket.org/#{repo["owner"]}/#{repo["slug"]}", target: "_blank"
%td.import-target
%td.import-actions-job-status
= label_tag "Incompatible Project", nil, class: "label label-danger"
2015-09-11 14:41:01 +05:30
- if @incompatible_repos.any?
%p
One or more of your Bitbucket projects cannot be imported into GitLab
directly because they use Subversion or Mercurial for version control,
rather than Git. Please convert
= link_to "them to Git,", "https://www.atlassian.com/git/tutorials/migrating-overview"
and go through the
= link_to "import flow", status_import_bitbucket_path, "data-no-turbolink" => "true"
again.
2016-09-13 17:45:13 +05:30
.js-importer-status{ data: { jobs_import_path: "#{jobs_import_bitbucket_path}", import_path: "#{import_bitbucket_path}" } }