{% extends "base.html" %} {% block title %}Compliance · PromptShield{% endblock %} {% block content %}

Compliance posture

{% for name in ['GDPR', 'SOC2', 'PCI_DSS', 'ISO27001'] %} {% set fw = compliance.get(name) %} {% if not fw and name == 'PCI_DSS' %}{% set fw = compliance.get('PCI-DSS') %}{% endif %} {% if fw %}

{{ name.replace('_', '-') }}

{{ fw.score }}%
{% endif %} {% endfor %}
{% endblock %} {% block scripts %} {% endblock %}