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

Statistics

{{ total }}
Total articles
{{ total_drafts }}
Inbox drafts
By type
{% set type_colors = {'decision': 'bg-blue-500', 'pattern': 'bg-green-500', 'gotcha': 'bg-red-500', 'contract': 'bg-purple-500', 'glossary': 'bg-orange-500', 'todo': 'bg-gray-400'} %} {% for type, count in type_counts.items() | sort %} {% set pct = (count / total * 100) | round(1) if total > 0 else 0 %}
{{ type }} {{ count }} ({{ pct }}%)
{% else %}

No articles yet.

{% endfor %}
Top tags
{% if top_tags %}
{% for tag, count in top_tags %} #{{ tag }} {{ count }} {% endfor %}
{% else %}

No tags yet.

{% endif %}
{% endblock %}