{% extends "base.html" %} {% load static %} {% block title %} System Statistics Dashboard {% endblock title %} {% block description %} View real-time system statistics in a comprehensive dashboard. Track key metrics, trends, and historical data to monitor your system's performance effectively. {% endblock description %} {% block keywords %} System Statistics Dashboard, Real-Time Metrics, System Performance, Track Trends, Historical Data, Key Metrics {% endblock keywords %} {% block og_title %} System Statistics Dashboard - Monitor Performance {% endblock og_title %} {% block og_description %} Access a detailed system statistics dashboard. Track real-time metrics, view trends, and analyze historical data to ensure optimal system performance. {% endblock og_description %} {% load humanize %} {% block style %} {% endblock style %} {% block content %} {% include "includes/sidenav.html" %}

Statistics

{% for stat in stats %}
{{ stat.label }}
{{ stat.count|intcomma }} {% if stat.trend > 0 %} {{ stat.trend }} {% elif stat.trend < 0 %} {{ stat.trend }} {% endif %}
Total: {{ stat.total_count|intcomma }}
{% if stat.history and stat.dates %}
{% endif %}
{% endfor %}
{% block extra_js %} {% endblock extra_js %} {% endblock content %}