summaryrefslogtreecommitdiff
path: root/app/views/projects/import/jira/show.html.haml
blob: 4106bcc2e5a07874acb446cf16d9e2296853c58a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
- if Feature.enabled?(:jira_issue_import_vue, @project, default_enabled: true)
  .js-jira-import-root{ data: { project_path: @project.full_path,
    issues_path: project_issues_path(@project),
    is_jira_configured: @project.jira_service.present?.to_s,
    jira_projects: @jira_projects.to_json,
    in_progress_illustration: image_path('illustrations/export-import.svg'),
    setup_illustration: image_path('illustrations/manual_action.svg') } }
- else
  - title = _('Jira Issue Import')
  - page_title title
  - breadcrumb_title title
  - header_title _("Projects"), root_path

  = render 'import/shared/errors'

  - if @project.import_state&.in_progress?
    %h3.page-title.d-flex.align-items-center
      = sprite_icon('issues', size: 16, css_class: 'mr-1')
      = _('Import in progress')
  - elsif @jira_projects.present?
    %h3.page-title.d-flex.align-items-center
      = sprite_icon('issues', size: 16, css_class: 'mr-1')
      = _('Import issues from Jira')

    = form_tag import_project_import_jira_path(@project), method: :post do
      .form-group.row
        = label_tag :jira_project_key, _('From project'), class: 'col-form-label col-md-2'
        .col-md-4
          = select_tag :jira_project_key, options_for_select(@jira_projects, ''), { class: 'select2' }
      .form-actions
        = submit_tag _('Import issues'), class: 'btn btn-success'
        = link_to _('Cancel'), project_issues_path(@project), class: 'btn btn-cancel'