1- if artifacts.blank?
2  .nothing-here-block= _('No jobs to show')
3- else
4  .table-holder
5    .ci-table
6      .gl-responsive-table-row.table-row-header.px-md-3{ role: 'row' }
7        .table-section.section-25{ role: 'rowheader' }= _('Job')
8        .table-section.section-15{ role: 'rowheader' }= _('Name')
9        .table-section.section-20{ role: 'rowheader' }= _('Creation date')
10        .table-section.section-20{ role: 'rowheader' }= _('Expiration date')
11        .table-section.section-10{ role: 'rowheader' }= _('Size')
12        .table-section.section-10{ role: 'rowheader' }
13
14      = render partial: 'artifact', collection: artifacts, as: :artifact
15
16  = paginate artifacts, theme: "gitlab", total_pages: @total_pages
17