{% extends "admin/base_site.html" %}
{% load i18n admin_static %}
{% block content_title %}
{% trans "Jobs" %}
{% trans "Job ID" %} |
{% trans "Description" %} |
{% trans "Date created" %} |
{% trans "Date enqueued" %} |
{% trans "Date ended" %} |
{% trans "Origin" %} |
{% trans "Result" %} |
{% for job in jobs %}
{{ job.id }} |
{{ job.description }} |
{% blocktrans with time=job.created_at|timesince %}{{ time }} ago{% endblocktrans %} |
{% blocktrans with time=job.enqueued_at|timesince %}{{ time }} ago{% endblocktrans %} |
{% if job.ended_at %}{% blocktrans with time=job.ended_at|timesince %}{{ time }} ago{% endblocktrans %}{% endif %} |
{{ job.origin }} |
{% if job.exc_info %}{% trans "failed" %}{% else %}{{ job.result }}{% endif %} |
{% empty %}
{% trans "No jobs" %} |
{% endfor %}
{% include "rq/queue_actions.html" %}
{% endblock %}