{% extends "base.html" %} {% block title %}Policy Inventory | Suvra{% endblock %} {% block content %}

Policy Inventory

{% include "policy_nav.html" %}
{% for policy in policies %} {% endfor %}
Policy ID Name Type Rules Updated
{{ policy.policy_id }} {{ policy.name }} {% if policy.policy_id == baseline_policy_id %}Baseline{% elif policy.type == "agent" %}Agent{% else %}{{ policy.type|title }}{% endif %} {{ policy.rules|length }} {{ policy.updated_at or "-" }}
{% endblock %}