{% extends "dashboard/base.html" %} {% block dashboard_header %}
Review automated scrutiny results for all tools
| 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 %}
{% for finding in tool.scrutiny_report.findings %}
{% else %}
No findings
{% endif %}
{{ finding.check }}:
{{ finding.result }}
{% endfor %}
{{ finding.message }}
{% if finding.suggestion %}
Suggestion: {{ finding.suggestion }}
{% endif %}
|
{{ tool.published_at[:10] if tool.published_at else 'Unknown' }} |
Try adjusting your filters.