{% extends "notifications/base.html" %} {% load i18n %} {% block subject %}{% trans "MSG.FAILED_OPERATIONS" %}{% endblock %} {% block content %} {% trans "MSG.MARKED_FAILED_OPERATIONS" %}:
{% trans "MSG.CREATED" %} | {% trans "MSG.BACKEND_TYPE" %} | {% trans "MSG.OPERATION_TYPE" %} | {% trans "MSG.ARGUMENTS" %} | {% trans "MSG.COUNT_TRIES" %} | {% trans "MSG.LAST_TRY_DESCRIPTION" %} | {% for pending_op in pending_operation_list %}
---|---|---|---|---|---|
{{ pending_op.created|date:"SHORT_DATETIME_FORMAT" }} | {{ pending_op.backend_type }} | {{ pending_op.operation_type }} | {{ pending_op.operation_args }} | {{ pending_op.attempts }} | {{ pending_op.last_failure_info }} |