{% extends "ci_dashboard/base.html" %} {% load helpers %} {% block content %} {% if product_cis %}

Product Status By Version

{% for index, version_name, version_code in versions %}
{% for pci in product_cis %} {% if pci|latest_rule_checks_by_version:version_name %}
{% include "ci_dashboard/product_ci_card.html" with pci=pci %}
{% endif %} {% endfor %}
{% endfor %}
{% endif %}

CI Statuses and Health

{% for number, ci in ci_systems_with_index %}
{% include "ci_dashboard/overview_ci_card.html" with ci=ci number=number %}
{% endfor %}
{% for number, ci in ci_systems_with_index %}
{% for status in ci.status_set.all|slice:":10" %} {% include "ci_dashboard/status_list_item.html" with status=status %} {% endfor %}
Only first 10 items are shown. Click here to access the full history.
{% endfor %}
{% endblock %}