{% block content %}

CPU usage statistics

{% if system_states %}

Total averages

Min Max Avg
{{ avg.total.min|stringformat:".2f" }} {{ avg.total.max|stringformat:".2f" }} {{ avg.total.avg|stringformat:".2f" }}

TOP {{ top_count }} averages

Min Max Avg
{{ avg.top.min|stringformat:".2f" }} {{ avg.top.max|stringformat:".2f" }} {{ avg.top.avg|stringformat:".2f" }}

TOP {{ top_count }} records

{% for state in system_states %} {% endfor %}
Created CPU usage Source IP address
{{ state.created }} {{ state.cpu_usage|stringformat:".2f" }} {{ state.source_ip }}
{% else %}

There are no records in database

{% endif %} {% endblock %}