mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-11 01:41:05 +00:00
25 lines
753 B
HTML
25 lines
753 B
HTML
{% extends "settings/base.html" %}
|
|
|
|
{% block subtitle %}Stator{% endblock %}
|
|
|
|
{% block content %}
|
|
{% for model, stats in model_stats.items %}
|
|
<fieldset>
|
|
<legend>{{ model }}</legend>
|
|
<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 %}
|