{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %}

Statistics

← Back to Dashboard

Your Statistics

{% if user_stats %}
{{ user_stats.get('total_uploads', 0) }}
Total Uploads
{{ user_stats.get('total_matches', 0) }}
Total Matches
{{ user_stats.get('active_matches', 0) }}
Active Matches
{% endif %}
{% if current_user.is_admin and system_stats %}

System Statistics

{% for key, value in system_stats.items() %}
{{ value }}
{{ key.replace('_', ' ').title() }}
{% endfor %}
{% endif %}