{% extends "admin/change_list.html" %} {% load static %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block object-tools %} {{ block.super }}

Action background tasks

{% if not admin_bg_tasks|length %}

No recent background tasks

{% else %} {% for bgt in admin_bg_tasks %} {% with bgtask=bgt.task_dict %} {% endwith %} {% endfor %}
Task nameStartedFinishedStatus
{{ bgt.admin_description }}{{ bgt.started_at|timesince }} ago{% include "bgtask/bg_completed_column.html" %} {% include "bgtask/bg_changelist_status_column.html" %}
{% endif %}
{% endblock %}