diff options
author | Andrew Godwin | 2022-12-16 19:42:48 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-12-16 19:42:48 -0700 |
commit | 12567f6891ad591390cbd74c0e7b77a4a024a24e (patch) | |
tree | 39a6bab590d3f1bde3802854d4a1175780404276 /templates/admin/stator.html | |
parent | c588567c8698700cd347d9b8f884a7967890aa58 (diff) | |
download | takahe-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.html | 16 |
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 %} |