{% extends "todo/todo_base.html" %} {% block title %} {{ _("Editor Work Queue") }} {% 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 %}

WIP

{% if canApproveNew and (packages or wip_packages) %}

WIP Packages

{% for p in wip_packages %} {{ p.created_at | timedelta }} ago {% if p.state == p.state.WIP %} WIP {% else %} {{ p.state.value }} {% endif %} {{ p.title }} by {{ p.author.display_name }} {% else %}
  • No packages need reviewing.
  • {% endfor %}
    {% endif %} {% endblock %}