Charts
load chart
timeline chart
Submit a job
{% csrf_token %}
Job type
Slow
Fast
Submit
Jobs
{% if not jobs %}
There are no known jobs.
{% else %}
Type
Status
Date
{% for job in jobs %}
{{ job.type }}
{{ job.status }}
{{ job.created_at }}
{% endfor %}
{% endif %}