summaryrefslogtreecommitdiff
path: root/app/views/admin/background_migrations/_migration.html.haml
blob: b6077bc54d66c81058806562ebdad4d32f90bae8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
%tr{ role: 'row' }
  %td{ role: 'cell', data: { label: _('Migration') } }= migration.job_class_name + ': ' + migration.table_name
  %td{ role: 'cell', data: { label: _('Progress') } }
    - progress = batched_migration_progress(migration, @successful_rows_counts[migration.id])
    - if progress
      = number_to_percentage(progress, precision: 2)
    - else
      = _('Unknown')
  %td{ role: 'cell', data: { label: _('Status') } }
    = gl_badge_tag migration.status.humanize, { size: :sm, variant: batched_migration_status_badge_variant(migration) }
  %td{ role: 'cell', data: { label: _('Action') } }
    - if migration.active?
      = button_to pause_admin_background_migration_path(migration),
        class: 'gl-button btn btn-icon has-tooltip', title: _('Pause'), 'aria-label' => _('Pause') do
        = sprite_icon('pause', css_class: 'gl-button-icon gl-icon')
    - elsif migration.paused?
      = button_to resume_admin_background_migration_path(migration),
        class: 'gl-button btn btn-icon has-tooltip', title: _('Resume'), 'aria-label' => _('Resume') do
        = sprite_icon('play', css_class: 'gl-button-icon gl-icon')
    - elsif migration.failed?
      = button_to retry_admin_background_migration_path(migration),
        class: 'gl-button btn btn-icon has-tooltip', title: _('Retry'), 'aria-label' => _('Retry') do
        = sprite_icon('retry', css_class: 'gl-button-icon gl-icon')