{% extends "base.html" %} {% block title %}Violations — vmware-harden{% endblock %} {% block content %}

Violations

{% if not has_data or violations|length == 0 %}

No violations.

Either no scans have run, or the estate is fully compliant.

{% else %}
Showing {{ violations|length }} of {{ total }} violations (page {{ page }}) from latest snapshot.
{% for v in violations %} {% endfor %}
Severity Rule Node Baseline Evidence
{{ v.severity|upper }} {{ v.rule_id }}
{{ v.node_id }}
{% if v.node_name %}
{{ v.node_name }}
{% endif %}
{{ v.baseline_id }}
{% if has_prev or has_next %}
{% if has_prev %} ← Previous {% else %}{% endif %} Page {{ page }} {% if has_next %} Next → {% else %}{% endif %}
{% endif %} {% endif %} {% endblock %}