{% if jobs %}
{% for job in jobs %}
{{ job.job_id[:8] }} {{ job.status }}
{% if job.description %}
{{ job.description }}
{% endif %}
Config: {{ job.config_path | basename }}
Created: {{ job.created_at | timeago }}
{% if job.max_workers %}
Workers: {{ job.max_workers }}
{% endif %}
{% if job.result %}
Result: {% if job.result.tests_passed %} {{ job.result.tests_passed }} passed {% endif %} {% if job.result.tests_failed %} {{ job.result.tests_failed }} failed {% endif %}
{% endif %} {% if job.error %}
Error: {{ job.error }}
{% endif %}
{% endfor %}
{% else %}

No jobs found. Start a new job above to see it here.

{% endif %}