{% extends "base.html" %} {% block title %}{{ _('Background Tasks') }} — {{ service_name }}{% endblock %} {% block content %}
{{ _('Background tasks are currently enabled.') }}
{% else %}{{ _('Background tasks are currently disabled.') }}
{% endif %} {% if tasks %}{{ _('This table shows a list of pending or failed tasks.') }} {{ _('Some tasks will be deleted automatically once they are completed or fail.') }}
{{ _('ID') }} | {{ _('Type') }} | {{ _('Status') }} | {{ _('Data') }} |
---|---|---|---|
{{ task.id }} | {{ task.type }} | {{ task.status.name }} |
{{ _('There are no pending or failed tasks.') }} {{ _('Some tasks will be deleted automatically once they are completed or fail.') }}
{% endif %} {% endblock %}