{% extends "web/base.html" %} {% block title %}Policy | tcx{% endblock %} {% block page_label %}Policy{% endblock %} {% block content %}
Safety review

Restricted symbols, explicit denies, and recent policy decisions.

Policy is inspected here. Risky policy changes belong to proposal, validation, approval, apply, and audit flows.

Open policy tables
Restricted list

{{ policy.restricted_symbols|length }} symbols

{% for item in policy.restricted_symbols %}
{{ item.symbol }} {{ item.reason|default:"No reason recorded" }} {% if item.active %}active{% else %}inactive{% endif %}
{% empty %}

No restricted symbols are active.

{% endfor %}
Policy decisions

Recent checks

{% for decision in policy.recent_decisions %} {% empty %} {% endfor %}
Decision Principal Action Resource Created
{{ decision.decision }} {{ decision.principal_id }} {{ decision.action }} {{ decision.resource|default:"-" }} {{ decision.created_at|date:"Y-m-d H:i" }}
No policy decisions have been recorded yet.
{% endblock %}