{% load i18n %} {% load humanize %} {% if notifications %}

{% translate "Alliance Auth Notifications" %}

    {% for notif in notifications %}
  • {% if notif.state == 'opened' %} {% translate "Open" %} {% else %} {% translate "Closed" %} {% endif %} #{{ notif.iid }} {{ notif.title }}
  • {% empty %} {% endfor %}
{% endif %}

{% translate "Task Queue" %}

{% blocktranslate with total=tasks_total|intcomma latest=earliest_task|timesince|default:"?" %} Status of {{ total }} processed tasks • last {{ latest }} {% endblocktranslate %}

{% include "allianceauth/admin-status/celery_bar_partial.html" with label="suceeded" level="success" tasks_count=tasks_succeeded %} {% include "allianceauth/admin-status/celery_bar_partial.html" with label="retried" level="info" tasks_count=tasks_retried %} {% include "allianceauth/admin-status/celery_bar_partial.html" with label="failed" level="danger" tasks_count=tasks_failed %}

? {% translate 'running' %} | ? {% translate 'queued' %}