summaryrefslogtreecommitdiffstats
path: root/templates/admin/stator.html
diff options
context:
space:
mode:
authorAndrew Godwin2022-12-16 19:42:48 -0700
committerAndrew Godwin2022-12-16 19:42:48 -0700
commit12567f6891ad591390cbd74c0e7b77a4a024a24e (patch)
tree39a6bab590d3f1bde3802854d4a1175780404276 /templates/admin/stator.html
parentc588567c8698700cd347d9b8f884a7967890aa58 (diff)
downloadtakahe-12567f6891ad591390cbd74c0e7b77a4a024a24e.tar.gz
takahe-12567f6891ad591390cbd74c0e7b77a4a024a24e.tar.bz2
takahe-12567f6891ad591390cbd74c0e7b77a4a024a24e.zip
Identity admin/moderation
Diffstat (limited to 'templates/admin/stator.html')
-rw-r--r--templates/admin/stator.html16
1 files changed, 14 insertions, 2 deletions
diff --git a/templates/admin/stator.html b/templates/admin/stator.html
index 64bd432..1f64eda 100644
--- a/templates/admin/stator.html
+++ b/templates/admin/stator.html
@@ -6,8 +6,20 @@
{% 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>
+ <table class="metadata">
+ <tr>
+ <th>Pending</td>
+ <td>{{ stats.most_recent_queued }}</td>
+ </tr>
+ <tr>
+ <th>Processed today</td>
+ <td>{{ stats.most_recent_handled.1 }}</td>
+ </tr>
+ <tr>
+ <th>This month</td>
+ <td>{{ stats.most_recent_handled.2 }}</td>
+ </tr>
+ </table>
</fieldset>
{% endfor %}
{% endblock %}