Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_migration_full_information.html.haml « background_migrations « admin « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 620274c375f691cbc52627c474876da06b52cdc2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
%tr{ role: 'row' }
  %td{ role: 'cell', data: { label: _('Id') } }
    = @migration.id
  %td{ role: 'cell', data: { label: _('Min Value') } }
    = @migration.min_value
  %td{ role: 'cell', data: { label: _('Max Value') } }
    = @migration.max_value
  %td{ role: 'cell', data: { label: _('Batch size') } }
    = @migration.batch_size
  %td{ role: 'cell', data: { label: _('Sub-batch size') } }
    = @migration.sub_batch_size
  %td{ role: 'cell', data: { label: _('Interval') } }
    = @migration.interval
  %td{ role: 'cell', data: { label: _('Pause time (ms)') } }
    = @migration.pause_ms
  %td{ role: 'cell', data: { label: _('Created on') } }
    = @migration.created_at
  %td{ role: 'cell', data: { label: _('Last updated') } }
    = @migration.updated_at
  %td{ role: 'cell', data: { label: _('Status') } }
    = gl_badge_tag @migration.status_name.to_s.humanize, { size: :sm, variant: batched_migration_status_badge_variant(@migration) }