{% set page_title = 'Database Stats' %}
{{ page_title }}
{% set bloom_mod = 'admin' %}
{% include 'legacy/bloom_header.html' %}
Database Statistics
Records Created in the Last 1 Day, 7 Days, and 30 Days
subtype
Last 1 Day
Last 7 Days
Last 30 Days
{% for sub_type, count in stats_1d %}
{{ sub_type }}
{{ count }}
{{ dict(stats_7d).get(sub_type, 0) }}
{{ dict(stats_30d).get(sub_type, 0) }}
{% endfor %}