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

Pending Tools

Review and approve submitted tools

← Back to Admin
{% endblock %} {% block dashboard_content %}
{% if tools %}
{% for tool in tools %} {% endfor %}
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 %} {% 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 %} {% set start_page = [1, meta.page - 2] | max %} {% set end_page = [meta.total_pages, meta.page + 2] | min %} {% if start_page > 1 %} ... {% endif %} {% for p in range(start_page, end_page + 1) %} {% if p == meta.page %} {{ p }} {% else %} {{ p }} {% endif %} {% endfor %} {% if end_page < meta.total_pages %} ... {% endif %} {% if meta.page < meta.total_pages %} Next » {% endif %}
{% endif %} {% else %}

No pending tools

All submitted tools have been reviewed.

{% endif %}
{% endblock %}