Files
crono/web/views/dashboard.haml
2015-03-10 23:26:58 +02:00

23 lines
466 B
Plaintext

%ol.breadcrumb
%li.active Home
%h3 Running Jobs
%table.table#job_list
%tr
%th Job
%th Last performed at
%th
%th
- for job in @jobs
%tr
%td= job.job_id
%td= job.last_performed_at || "—"
%td
- if job.healthy == false
%a{href: url("/job/#{job.id}")}
%span.label.label-danger Error
%td
%a{href: url("/job/#{job.id}")}
Log
%span.glyphicon.glyphicon-menu-right