{% extends "dashboard/base.html" %} {% block dashboard_header %}

Scrutiny Audit

Review automated scrutiny results for all tools

← Back to Admin
{% endblock %} {% block dashboard_content %}
Auto-Approved
{{ stats_summary.approved_approved or 0 }}
Scrutiny passed
Needs Review
{{ stats_summary.review_pending or 0 }}
Has warnings
Manually Approved
{{ stats_summary.review_approved or 0 }}
With warnings
Total Pending
{{ stats_summary.total_pending or 0 }}
Awaiting review
{% if scrutiny_filter or moderation_filter %} Clear {% endif %}
{% if tools %}
{% for tool in tools %} {% endfor %}
Tool Scrutiny Moderation Findings Published
v{{ tool.version }} - {{ tool.category or 'Uncategorized' }}
{% if tool.scrutiny_status == 'approved' %} Passed {% elif tool.scrutiny_status == 'pending_review' %} Warnings {% else %} {{ tool.scrutiny_status or 'N/A' }} {% endif %} {% if tool.moderation_status == 'approved' %} Approved {% elif tool.moderation_status == 'pending' %} Pending {% elif tool.moderation_status == 'rejected' %} Rejected {% endif %} {% if tool.scrutiny_report and tool.scrutiny_report.findings %} {% else %} No findings {% endif %} {{ tool.published_at[:10] if tool.published_at else 'Unknown' }}
{% if meta.total_pages > 1 %}
Page {{ meta.page }} of {{ meta.total_pages }} ({{ meta.total }} total)
{% if meta.page > 1 %} Previous {% endif %} {% if meta.page < meta.total_pages %} Next {% endif %}
{% endif %} {% else %}

No tools found

Try adjusting your filters.

{% endif %}
{% endblock %}