{% load i18n %} {% load humanize %} {% if notifications %}
{% translate "Alliance Auth Notifications" as widget_title %} {% include "framework/dashboard/widget-title.html" with title=widget_title %}
    {% for notif in notifications %}
  • {% if notif.state == 'opened' %} {% translate "Open" %} {% else %} {% translate "Closed" %} {% endif %} #{{ notif.iid }} {{ notif.title }}
  • {% empty %} {% endfor %}
{% endif %}
{% translate "Software Version" as widget_title %} {% include "framework/dashboard/widget-title.html" with title=widget_title %}
{% translate "Task Queue" as widget_title %} {% include "framework/dashboard/widget-title.html" with title=widget_title %}

{% 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' %}