{% if jobs %}
{% for job in jobs[:5] %}
{% if job.status == 'running' %} run {% elif job.status == 'queued' %} que {% endif %} {{ job.name or '#' ~ job.id }}
{{ job.command_argv|deserialize_json|join(' ') if job.command_argv else '-' }}
{% endfor %}
{% if jobs|length > 5 %}
+{{ jobs|length - 5 }} more
{% endif %} {% else %}
No active jobs
{% endif %}