{% trans "Job ID" %} | {% trans "Description" %} | {% trans "Date created" %} | {% trans "Repeat" %} | {% trans "Interval" %} | {% trans "Next run" %} | {% trans "Origin" %} |
---|---|---|---|---|---|---|
{{ job.id }} | {{ job.description }} | {% blocktrans with time=job.created_at|timesince %}{{ time }} ago{% endblocktrans %} | {{ job.repeat|default_if_none:_("Forever") }} | {{ job.interval|default_if_none:"" }} | {% if job.next_run %}{% blocktrans with time=job.next_run|timeuntil %}{{ time }}{% endblocktrans %}{% endif %} | {{ job.origin }} |
{% trans "No jobs" %} |