{% extends "dashboard/base.html" %} {% block dashboard_header %}
Review and approve submitted tools
| Tool | Publisher | Scrutiny | Submitted | Actions |
|---|---|---|---|---|
|
v{{ tool.version }}
|
{{ tool.publisher_name }}
{{ 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.scrutiny_report and tool.scrutiny_report.findings %}
{% for finding in tool.scrutiny_report.findings %}
{% if finding.result == 'warning' %}
{% endif %}
{{ finding.check }}:
{{ finding.message }}
{% if finding.suggestion %}
{% endif %}
{% endfor %}
{{ finding.suggestion }}
{% endif %}
|
{{ tool.published_at[:10] if tool.published_at else 'Unknown' }} |
All submitted tools have been reviewed.