{% extends "base.html" %} {% block title %}Admin — The Spring{% endblock %} {% block content %}
Admin

Site operator controls. Be careful — deletions are immediate and permanent.

{{ stats.users }}
Members
{{ stats.comments }}
Archive replies
{{ stats.threads }}
Live threads
{{ stats.posts }}
Live posts
Recent archive comments (2026–)
{% if recent_comments %} {% for c in recent_comments %} {% endfor %}
when~userlocationbodyaction
{{ pretty_time(c.created_at) }} ~{{ c.username }} {{ c.conf }}/{{ c.thread_num }} {{ c.body[:140] }}{% if c.body|length > 140 %}…{% endif %}
{% else %}

— none —

{% endif %}
Recent live posts
{% if recent_posts %} {% for p in recent_posts %} {% endfor %}
when~userthreadbodyaction
{{ pretty_time(p.created_at) }} ~{{ p.username }} {{ p.title[:40] }} {{ p.body[:120] }}{% if p.body|length > 120 %}…{% endif %}
{% else %}

— none —

{% endif %}
Members
{% for u in recent_users %} {% endfor %}
handlejoinedlast seencmtspostsaction
~{{ u.username }} {{ pretty_time(u.joined_at) }} {{ pretty_time(u.last_seen) }} {{ u.comments }} {{ u.posts }}
{% endblock %}