{% extends "base.html" %} {% block title %} {{ title }} {% endblock %} {% block content %}

Approval Queue

{% if canApproveScn and screenshots %}

Screenshots

{% endif %}
{% if canApproveNew and (packages or wip_packages) %}
{% endif %} {% if canApproveRel and releases %}

Releases

{% endif %}
{% if not (packages or screenshots or releases) %}

All done!

{% endif %}

Tag Packages

{{ total_to_tag }} / {{ total_packages }} packages don't have any tags.

{% set perc = 100 * (total_packages - total_to_tag) / total_packages %}
View Tags {% if unfulfilled_meta_packages %}

{{ unfulfilled_meta_packages }} Unfulfilled Dependencies

Meta packages that have hard dependers, but are not fulfilled.

View {% endif %}

Unadded Topic List

{% if total_topics > 0 %}

{{ total_topics - topics_to_add }} / {{ total_topics }} packages have been been added to cdb, based on cdb's forum parser. {{ topics_to_add }} remaining.

{% set perc = 100 * (total_topics - topics_to_add) / total_topics %}
View Unadded Topic List {% else %}

The forum topic crawler needs to run at least once for this section to work.

{% endif %} {% endblock %}