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

Compliance Summary

{% if not summary.has_data %}

No scans yet.

Run vmware-harden scan --target <vc> first.

{% else %}
Latest scan against {{ summary.target }} {% if summary.finished_at %} at {{ summary.finished_at }}{% endif %} — total {{ summary.total }} violations {# `tracked`, not truthiness: an untracked snapshot's coverage dict is non-empty but all zeros, and "0 of 0 rules evaluated" states a fact ("nothing was judged") where the truth is "we do not know". #} {% if summary.coverage and summary.coverage.tracked %} across {{ summary.coverage.evaluated }} of {{ summary.coverage.total }} rules evaluated {% endif %}
{% if summary.coverage_note %}
{{ summary.coverage_note }} See which rules.
{% endif %}
{% for sev in summary.severity %}
{{ sev.name|capitalize }}
{{ sev.count }}
{% endfor %}

Violations by Category

{% endif %} {% endblock %}