summaryrefslogtreecommitdiffstats
path: root/templates/admin/stator.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/admin/stator.html')
-rw-r--r--templates/admin/stator.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/templates/admin/stator.html b/templates/admin/stator.html
new file mode 100644
index 0000000..64bd432
--- /dev/null
+++ b/templates/admin/stator.html
@@ -0,0 +1,13 @@
+{% extends "settings/base.html" %}
+
+{% block subtitle %}Stator{% endblock %}
+
+{% block content %}
+ {% for model, stats in model_stats.items %}
+ <fieldset>
+ <legend>{{ model }}</legend>
+ <p><b>Pending:</b> {{ stats.most_recent_queued }}</p>
+ <p><b>Processed today:</b> {{ stats.most_recent_handled.1 }}</p>
+ </fieldset>
+ {% endfor %}
+{% endblock %}