{# -*- coding: utf-8 -*- Copyright (C) 2025 TU Wien. Invenio Theme TUW is free software; you can redistribute it and/or modify it under the terms of the MIT License; see LICENSE file for more details. #} {%- extends config.BASE_TEMPLATE %} {%- block page_body %}

Recent background task failures

{%- for failure in failures %} {%- endfor -%}
Infos about recent background task failures
Timestamp Task ID Task name Args KW Args Stack trace
{{ failure.timestamp.strftime("%Y-%m-%d %H:%M:%S") if failure.timestamp else "-" }} {{ failure.task_id }} {{ failure.task_name }}
{{ failure.task_args or "[]" }}
{{ failure.task_kwargs or "{}" }}
{{ failure.exception_info }}
{%- endblock page_body %} {%- block css %} {{ super() }} {{ webpack['invenio-theme-tuw-task-failures.css'] }} {%- endblock css %}