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

    {{ items.0.obj.verbose }}

    {% endfor %} {% if no_components %}

    {% trans "Projects without components" %}

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

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