{% extends "base.html" %} {% block content %}

Recorded Anomalies

{% if anomalies %}
    {% for item in anomalies %}
  • {{ item.summary }} ({{ item.category }} / {{ item.severity }} / {{ item.environment }})
  • {% endfor %}
{% else %}

No anomalies recorded.

{% endif %}
{% if anomaly %}

Anomaly Detail

{{ anomaly.summary }}

{{ anomaly.__dict__ | tojson(indent=2) }}
{% endif %} {% endblock %}