diff options
author | James Lopez <james@jameslopez.es> | 2016-05-02 11:29:21 +0200 |
---|---|---|
committer | James Lopez <james@jameslopez.es> | 2016-05-02 11:29:21 +0200 |
commit | 07ab6c2e26a36734ad29ae037810c14d2be7ec8b (patch) | |
tree | 3e3b552bce3a61718a8565a39be3c2111623506b /app/views/import | |
parent | 7ebf22e0024f457238090c3545b8acafae0e1a6f (diff) | |
download | gitlab-ce-07ab6c2e26a36734ad29ae037810c14d2be7ec8b.tar.gz |
refactoring and fixing a bunch of stuff
Diffstat (limited to 'app/views/import')
-rw-r--r-- | app/views/import/gitlab_projects/status.html.haml | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/app/views/import/gitlab_projects/status.html.haml b/app/views/import/gitlab_projects/status.html.haml index 2b879f0c595..e69de29bb2d 100644 --- a/app/views/import/gitlab_projects/status.html.haml +++ b/app/views/import/gitlab_projects/status.html.haml @@ -1,55 +0,0 @@ -- page_title "Gitlab_project import" -- header_title "Projects", root_path -%h3.page-title - %i.icon-gitlab.icon-gitlab-big - Import Gitlab projects - -%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_project.org - %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://gitlab_project.org/#{project.import_source}", target: "_blank" - %td - = link_to project.path_with_namespace, [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.full_name, "https://gitlab_project.org/#{repo.full_name}", target: "_blank" - %td.import-target - = repo.full_name - %td.import-actions.job-status - = button_tag class: "btn btn-import js-add-to-import" do - Import - = icon("spinner spin", class: "loading-icon") - -:javascript - new ImporterStatus("#{jobs_import_gitlab_project_path}", "#{import_gitlab_project_path}"); |