{% extends "base.html" %} {% block title %} Approval Stats {% endblock %} {% block content %}
Since Aug 2020 | Last 365 days
{% if start or end %}From {{ start.date() }} to {{ end.date() }}.
{% endif %}Turnaround: how long after clicking "Ready for Review" does the package receive a response. A package can be marked as ready for review multiple times.
Name | Count |
---|---|
{{ name }} | {{ count }} |
Name | First submitted | Approved at | Time waiting for review | Time to approve |
---|---|---|---|---|
{{ name }} | {{ info.first_submitted.date() }} | {% if info.approved_at %}{{ info.approved_at.date() }}{% endif %} | {{ (info.wait_time / (60*60*24)) | round(1) }} | {% set approval_time = info.total_approval_time %} {% if approval_time >= 0 %} {{ (approval_time / (60*60*24)) | round(1) }} {% endif %} |