summaryrefslogtreecommitdiff
path: root/app/views/admin/background_migrations/index.html.haml
blob: 9ccbdfb5f2012ae629ae6f9ac9be22188423e65d (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
33
34
35
36
- page_title _('Background Migrations')

.tabs.gl-tabs
  %div
    %ul.nav.gl-tabs-nav{ role: 'tablist' }
      - active_tab_classes = ['gl-tab-nav-item-active', 'gl-tab-nav-item-active-indigo']

      %li.nav-item{ role: 'presentation' }
        %a.nav-link.gl-tab-nav-item{ href: admin_background_migrations_path, class: (active_tab_classes if @current_tab == 'queued'), role: 'tab' }
          = _('Queued')
          %span.badge.gl-tab-counter-badge.badge-muted.badge-pill.gl-badge.sm
            = limited_counter_with_delimiter(@relations_by_tab['queued'])
      %li.nav-item{ role: 'presentation' }
        %a.nav-link.gl-tab-nav-item{ href: admin_background_migrations_path(tab: 'failed'), class: (active_tab_classes if @current_tab == 'failed'), role: 'tab' }
          = _('Failed')
          %span.badge.gl-tab-counter-badge.badge-muted.badge-pill.gl-badge.sm
            = limited_counter_with_delimiter(@relations_by_tab['failed'])
      %li.nav-item{ role: 'presentation' }
        %a.nav-link.gl-tab-nav-item{ href: admin_background_migrations_path(tab: 'finished'), class: (active_tab_classes if @current_tab == 'finished'), role: 'tab' }
          = _('Finished')
          %span.badge.gl-tab-counter-badge.badge-muted.badge-pill.gl-badge.sm
            = limited_counter_with_delimiter(@relations_by_tab['finished'])

  .tab-content.gl-tab-content
    .tab-pane.active{ role: 'tabpanel' }
      %table.table.b-table.gl-table.b-table-stacked-md{ role: 'table' }
        %thead{ role: 'rowgroup' }
          %tr{ role: 'row' }
            %th.table-th-transparent.border-bottom{ role: 'cell' }= _('Migration')
            %th.table-th-transparent.border-bottom{ role: 'cell' }= _('Progress')
            %th.table-th-transparent.border-bottom{ role: 'cell' }= _('Status')
            %th.table-th-transparent.border-bottom{ role: 'cell' }
        %tbody{ role: 'rowgroup' }
          = render partial: 'migration', collection: @migrations

      = paginate_collection @migrations