{% extends "base.html" %} {% block title %}Dashboard — ULPgrammer{% endblock %} {% block content %}
🔴 CRITICAL: {{ counts.CRITICAL }} 🟠 HIGH: {{ counts.HIGH }} 🟡 MEDIUM: {{ counts.MEDIUM }} 🟢 LOW: {{ counts.LOW }}
{% if groups %}
Groups: {% for g in groups %} {{ g.name }} {% endfor %}
{% endif %}

Live feed

{% for hit in hits %}
{{ hit.severity }} {{ hit.raw }} {{ hit.source }} / {{ hit.filename }} — {{ hit.timestamp }} {% if hit.reasons %} {% endif %}
{% endfor %}
{% endblock %}