{% extends "base.html" %} {% block title %}Regulations Browser — AI Trace Auditor{% endblock %} {% block nav_regulations %}active{% endblock %} {% block content %}
Legal Requirements

Regulations Browser

Browse all requirements with legal citations. Frameworks marked (Beta) have not been verified against primary source text.

{% for reg in regulations %} {% endfor %}
{% for reg in regulations %}

{{ reg.name }}

{% if reg.is_beta %} Beta — Unverified {% endif %} ({{ reg.total }} requirements)
{% for article in reg.articles %}
{{ article.name }} ({{ article.requirements|length }} requirements)
{% for req in article.requirements %}
{{ req.id }} {{ req.severity }} {% if req.compliance_tier != 'untiered' %} {{ req.compliance_tier }} {% endif %} {% if req.check_type == 'organizational' %} organizational {% endif %}
{% if req.verified %} Verified {% else %} Unverified {% endif %}

{{ req.title }}

{{ req.description }}

Legal Citation: {{ req.legal_text }}
{% endfor %}
{% endfor %}
{% endfor %}
{% endblock %}