{% extends "base.html" %} {% block title %}sharktopus — jobs{% endblock %} {% block content %}

Jobs

{% if jobs %} {% for j in jobs %} {% endfor %}
#NameStatusProgressBytesDurationCreated
{{ j.id }} {{ j.name }} {{ j.status }}
{{ j.steps_done }}/{{ j.steps_total }}{% if j.steps_failed %} · {{ j.steps_failed }} failed{% endif %}
{{ j.bytes_downloaded | human_bytes }} {{ j.duration }} {{ j.created_at }}
{% else %}

No jobs match this filter. Start one →

{% endif %}
{% endblock %}