Sha256: 22be6581ccf51eeaad54166d7ec64313c08212d254e3ef8d938f0d863c2c5ff7

Contents?: true

Size: 706 Bytes

Versions: 3

Compression:

Stored size: 706 Bytes

Contents

%ol.breadcrumb
  %li.active Home

%h3 Running Jobs
%table.table#job_list
  %tr
    %th Job
    %th Last performed at
    %th Status
    %th
  - @jobs.each do |job|
    %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
        - if job.healthy == true
          %a{ href: url("/job/#{job.id}") }
            %span.label.label-success Success
        - else
          %a{ href: url("/job/#{job.id}") }
            %span.label.label-default Pending
      %td
        %a{ href: url("/job/#{job.id}") }
          Log
          %span.glyphicon.glyphicon-menu-right

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
crono-0.8.8.pre web/views/dashboard.haml
crono-0.8.7.pre web/views/dashboard.haml
crono-0.8.6.pre web/views/dashboard.haml