{% extends 'base.html' %} {% block content %}
{% if charts_mode == 'one' %}
{{ _('Historical CPU and Memory Usage:') }}
{% elif charts_mode == 'two' %}
{{ _('Historical CPU Usage:') }}
{{ _('Historical Memory Usage:') }}
{% else %} {% endif %}
{% if show_all %} Showing 1 - {{ total_lines }} of {{ total_lines }} items {% else %} Showing {{ items_per_page * (current_page - 1) + 1 }} - {% if items_per_page * current_page > total_lines %}{{ total_lines }}{% else %}{{ items_per_page * current_page }}{% endif %} out of {{ total_lines }} items {% endif %}
{% for entry in usage_data %} {% endfor %}
{{ _("Date") }} {{ _("CPU %") }} {{ _("Memory %") }} {{ _("Net I/O") }} {{ _("Block I/O") }}
{{ entry.timestamp }} {{ entry.cpu_percent | round(2) }} {{ entry.mem_percent | round(2) }} {{ entry.net_io }} {{ entry.block_io }}
{% if charts_mode == 'one' %} {% elif charts_mode == 'two' %} {% endif %}
{% endblock %}