{% extends "base.html" %} {% load i18n translations %} {% block breadcrumbs %} {% endblock breadcrumbs %} {% block content %} {% regroup alerts by name as alert_list %} {% for dummy, items in alert_list %}

{{ items.0.obj.verbose }}

{% for alert in items %} {{ alert.component }} {% if alert.dismissed %} {% translate "dismissed" %} {% endif %} {% endfor %}

{% endfor %} {% if no_components %}

{% translate "Projects without components" %}

{% for project in no_components %} {{ project }} {% endfor %}

{% endif %} {% if not alerts and not no_components %} {% translate "Congratulations, your setup seems to work." as msg %} {% show_message "success" msg %} {% endif %} {% endblock content %}