{% extends "base.html" %} {% block title %}Audit report — ai-offboard{% endblock %} {% block content %}

AI Access Audit

Tenant {{ tenant_id }}

{% if mode %} {{ mode }} scan {% endif %}

Scanned {{ scanned_at or "just now" }}

{{ principal_count }}principals
{{ app_count }}app assignments
{{ findings|length }}findings
Download report.md Download report.html ← New audit

App inventory

AI apps with assignments found in this tenant.

{% if apps %}
{% for app in apps %} {{ app.name }}{{ app.tier or 'unknown' }} {% endfor %}
{% else %}

No AI app assignments detected.

{% endif %}

Findings

{% if findings %}
{% for f in findings %} {% endfor %}
SeverityRuleSubjectEvidenceRemediation
{{ f.severity }} {{ f.rule_id }} {{ f.subject }} {{ f.evidence }}
    {% for step in f.remediation %}
  • {{ step }}
  • {% else %}
  • No programmed steps.
  • {% endfor %}
Critical broad access High revoke promptly Medium review Low monitor
{% else %}

No findings. Clean scan.

{% endif %}

Full report (markdown)

{{ report_md }}
{% endblock %} {% block scripts %} {% endblock %}