{% 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 }} violations 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 }}
{% endif %} {% endblock %}