{% if job.status %} {% if job.status == 'S' %}
Success
{% endif %} {% if job.status == 'F' %}
Failed
{% endif %} {% if not job.status == 'F' and not job.status == 'S' %}?{% endif %} {% else %}
Processing...
Queued: {{ job.queued_time|date:"Y-m-d H:i:s" }}
{% if job.start_time %}
Started: {{ job.start_time|date:"Y-m-d H:i:s" }}
{% endif %}
{% endif %}