mirror of
https://github.com/internetee/registry.git
synced 2025-06-11 23:24:48 +02:00
21 lines
644 B
Text
21 lines
644 B
Text
= render 'shared/title', name: t(:jobs)
|
|
|
|
.row
|
|
.col-md-12
|
|
.table-responsive
|
|
%table.table.table-hover.table-bordered.table-condensed
|
|
%thead
|
|
%tr
|
|
%th{class: 'col-xs-2'}= t(:priority)
|
|
%th{class: 'col-xs-2'}= t(:attempts)
|
|
%th{class: 'col-xs-2'}= t(:last_error)
|
|
%th{class: 'col-xs-1'}= t(:run_at)
|
|
%th{class: 'col-xs-1'}= t(:created_at)
|
|
%tbody
|
|
- @jobs.each do |job|
|
|
%tr
|
|
%td= job.priority
|
|
%td= job.attempts
|
|
%td= job.last_error
|
|
%td= job.run_at
|
|
%td= job.created_at
|