mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-14 03:11:46 +00:00
1130c23b1e
Removes the error table, adds a stats table and admin page. Fixes #166
13 lines
401 B
HTML
13 lines
401 B
HTML
{% 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 %}
|