{% if jobs.length %} {% for j in jobs %} {% endfor %}
{{ __("Worker") }} {{ __("Current Job") }} {{ __("Status") }} {{ __("Created") }}
{{ j.queue }}
{{ frappe.utils.encode_tags(j.job_name) }}
{% if j.exc_info %}
{{ __("Exception") }}
{{ frappe.utils.encode_tags(j.exc_info) }}
{% endif %}
{{ toTitle(j.status) }} {{ frappe.datetime.prettyDate(j.creation) }}
{% else %}
Empty State

{{ __("No workers online on this site") }}

{% endif %}