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

60 lines
2 KiB
Text
Raw Normal View History

2018-11-18 11:00:15 +05:30
- page_title _("FogBugz import")
- header_title _("Projects"), root_path
2015-09-25 12:07:36 +05:30
%h3.page-title
%i.fa.fa-bug
2018-11-18 11:00:15 +05:30
= _('Import projects from FogBugz')
2015-09-25 12:07:36 +05:30
- if @repos.any?
%p.light
2018-11-18 11:00:15 +05:30
= _('Select projects you want to import.')
2015-09-25 12:07:36 +05:30
%p.light
2018-11-18 11:00:15 +05:30
- link_to_customize = link_to('customize', new_user_map_import_fogbugz_path)
= _('Optionally, you can %{link_to_customize} how FogBugz email addresses and usernames are imported into GitLab.').html_safe % { link_to_customize: link_to_customize }
2015-09-25 12:07:36 +05:30
%hr
%p
2016-06-02 11:05:42 +05:30
= button_tag class: 'btn btn-import btn-success js-import-all' do
2018-11-18 11:00:15 +05:30
= _('Import all projects')
2016-06-02 11:05:42 +05:30
= icon("spinner spin", class: "loading-icon")
2015-09-25 12:07:36 +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
2018-11-18 11:00:15 +05:30
%th= _("From FogBugz")
%th= _("To GitLab")
%th= _("Status")
2015-11-26 14:37:03 +05:30
%tbody
- @already_added_projects.each do |project|
2017-08-17 22:00:37 +05:30
%tr{ id: "project_#{project.id}", class: "#{project_status_css_class(project.import_status)}" }
2015-11-26 14:37:03 +05:30
%td
= project.import_source
%td
2017-09-10 17:25:29 +05:30
= link_to project.full_path, [project.namespace.becomes(Namespace), project]
2015-11-26 14:37:03 +05:30
%td.job-status
2019-02-15 15:39:39 +05:30
- case project.import_status
- when 'finished'
2015-11-26 14:37:03 +05:30
%span
%i.fa.fa-check
2018-11-18 11:00:15 +05:30
= _("done")
2019-02-15 15:39:39 +05:30
- when 'started'
2015-11-26 14:37:03 +05:30
%i.fa.fa-spinner.fa-spin
2018-11-18 11:00:15 +05:30
= _("started")
2015-11-26 14:37:03 +05:30
- else
= project.human_import_status_name
2015-09-25 12:07:36 +05:30
2015-11-26 14:37:03 +05:30
- @repos.each do |repo|
2017-08-17 22:00:37 +05:30
%tr{ id: "repo_#{repo.id}" }
2015-11-26 14:37:03 +05:30
%td
= repo.name
%td.import-target
2017-08-17 22:00:37 +05:30
#{current_user.username}/#{repo.name}
2015-11-26 14:37:03 +05:30
%td.import-actions.job-status
2016-06-02 11:05:42 +05:30
= button_tag class: "btn btn-import js-add-to-import" do
2018-11-18 11:00:15 +05:30
= _("Import")
2016-06-02 11:05:42 +05:30
= icon("spinner spin", class: "loading-icon")
2015-09-25 12:07:36 +05:30
2016-09-13 17:45:13 +05:30
.js-importer-status{ data: { jobs_import_path: "#{jobs_import_fogbugz_path}", import_path: "#{import_fogbugz_path}" } }