<%% "templates/rwf_admin/head.html" %> <%% "templates/rwf_admin/nav.html" %>
<% for name in ["jobs"] %> <%% "templates/rwf_admin/reload.html" %> <% end %>

Queued

<%= queued %>

Running

<%= running %>

Errors

<%= errors %>

Latency

<%= latency %>s

<% if jobs %> <% for job in jobs %> <% end %>
ID Name Args Queued Status
<%= job.id %> <%= job.name %> <%= job.args %> <%= job.created_at %> <% if job.completed_at %> <% if job.error %> <%= job.error %> <% else %> Completed <% end %> <% elsif job.started_at %> Running <% else %> Queued <% end %>
<% else %>

There are currently no jobs.

<% end %>
<%% "templates/rwf_admin/footer.html" %>