{% load i18n %} {% load eventurl %} {% load bootstrap3 %} {% load escapejson %}
{{ display_name }}
{% if pending %}{% if pending.need_manual_retry %} {% trans "Error" %}: {{ pending.get_need_manual_retry_display }} {% elif pending.failed_attempts %} {% blocktrans trimmed with num=pending.failed_attempts max=pending.max_retry_attempts %} Error. Retry {{ num }} of {{ max }}. {% endblocktrans %} {% if pending.not_before %} {% blocktrans trimmed with datetime=pending.not_before|date:"SHORT_DATETIME_FORMAT" %} Waiting until {{ datetime }} {% endblocktrans %} {% endif %} {% elif pending.not_before > now %} {% blocktrans trimmed with datetime=pending.not_before|date:"SHORT_DATETIME_FORMAT" %} Waiting until {{ datetime }} {% endblocktrans %} {% else %} {% trans "Pending" %} {% endif %} ({% blocktrans trimmed with datetime=pending.triggered|date:"SHORT_DATETIME_FORMAT" %}triggered at {{ datetime }} {% endblocktrans %})
{% endif %}