| Running Software |
{% if software %}
{{ software.software_version }}
{% if software.software_version.end_of_support_passed %}
EoS passed
{% endif %}
{% else %}
Not recorded
{% endif %}
|
| Compliance |
{% if not software %}
—
{% elif validated_rules %}
{% if validated_rules|length > 0 %}
Compliant
{% for rule in validated_rules %}
{% if rule.preferred %}Preferred{% endif %}
{% endfor %}
{% endif %}
{% else %}
No valid rule covers this software
{% endif %}
|
| Hardware Notice |
{% if hardware_notice %}
End of support: {{ hardware_notice.end_of_support|default:"—" }}
{% if hardware_notice.end_of_support_passed %}
Past EoS
{% endif %}
{% else %}
None
{% endif %}
|
| Open Vulnerabilities |
{% if vulnerabilities %}
{{ vulnerabilities.count }}
{% for vuln in vulnerabilities|slice:":5" %}
- {{ vuln.cve }}
{% endfor %}
{% else %}
None
{% endif %}
|