{% extends "base.html" %} {% block title %}BBS Stats{% endblock %} {% block content %}

Statistics

Activity, milestones, and recent badge earners.

All-time totals

{{ overall.users }}

users

{{ overall.posts }}

board posts

{{ overall.echomail }}

echomail

{{ overall.netmail }}

netmail

{{ overall.pms }}

PMs

{{ overall.shouts }}

shouts

{{ overall.file_areas }}

file areas

{{ overall.achievements }}

badges earned
Last 24 hours

{{ last24.logins }}

logins

{{ last24.posts }}

posts

{{ last24.echomail }}

echomail

{{ last24.shouts }}

shouts
Top posters (last 7 days)
{% if top_posters %}
    {% for p in top_posters %}
  1. {{ p.username }} {{ p.count }}
  2. {% endfor %}
{% else %}
No recent posts.
{% endif %}
Recent badge earners
{% if recent_awards %}
    {% for a in recent_awards %}
  • {{ a.user }} earned {{ a.name }} {{ a.when.strftime('%m-%d %H:%M') }}
  • {% endfor %}
{% else %}
No badges earned yet.
{% endif %}
{% if daily_logins %}
Daily logins (last 30 days)
{% set max_count = (daily_logins | map(attribute='count') | list | max) or 1 %} {% for d in daily_logins %}
{% endfor %}
{{ daily_logins[0].day }} → {{ daily_logins[-1].day }}
{% endif %} {% endblock %}