{% extends 'base/layout.html' %} {% load helpers %} {% block title %}Cryptographic Vault{% endblock %} {% block content %}

Cryptographic Vault

Consolidated cryptographic inventory, service assignment, and health overview.

{% for label, value, url in vault_cards %}
{{ label }}
{{ value }}
{% if url %}Open{% endif %}
{% empty %}
No Vault data is visible with your current permissions.
{% endfor %}
Unassigned Cryptographic Objects
Certificates without a Service
{{ unassigned_certificates }}
Private Keys without a Service
{{ unassigned_private_keys }}
CSRs without a Service
{{ unassigned_csrs }}
Bundles without a Service
{{ unassigned_bundles }}
Active Health Finding Categories
{% for row in vault_health_categories %}
{{ row.category|title }}{{ row.total }}
{% empty %} No active findings. {% endfor %}
{% endblock %}