{% extends "public/base.html" %}
{% load nm %}
{% block breadcrumbs %}{{block.super}} / stats / latest {% endblock %}
{% block content %}
Debian New Member - Current status and recent events
Queues
Step |
Count |
Held |
Started a process |
{{counts.new}} |
{{counts.new_hold}} |
Waiting for a free AM |
{{counts.new_ok}} |
|
Interacting with an AM |
{{counts.am}} |
{{counts.am_hold}} |
AM approved, waiting for FD check |
{{counts.fd}} |
{{counts.fd_hold}} |
FD approved, waiting for DAM check |
{{counts.dam}} |
{{counts.dam_hold}} |
DAM approved, waiting keyring-maint and DSA |
{{counts.dam_ok}} |
|
Latest events
Date |
Name |
Uid |
Event |
{% for e in events %}
{{e.time|date:"Y-m-d"}} |
{{e.person.fullname}} |
{% if e.type == "status" %}
{{e.person.uid}}
{% else %}
{{e.person.uid}}
{% endif %}
|
{% if e.type == "status" %}
Status changed to {{e.person.status|desc_status}}
{% else %}
Progress changed to {{e.log.progress|desc_progress}}
{% endif %}
|
{% endfor %}
{% endblock %}