{% extends "psutildash/layout.html" %} {% block title %}Dashboard{% endblock %} {% block content %}

CPU

{% for cpu_percent in cpu_info.cpu_percent %} {% endfor %}
Cores {{ cpu_info.cpu_count }}
CPU {{ forloop.counter }} {{ cpu_percent }}%

Memory

Total {{ memory_info.total }}
Available {{ memory_info.available }}
Used {{ memory_info.used }}
Percentage {{ memory_info.percent }}%

Swap

Total {{ swap_info.total }}
Used {{ swap_info.used }}
Free {{ swap_info.free }}
Percentage {{ swap_info.percent }}%

Disks

{% for disk in disks_info %} {% endfor %}
Mountpoint Total Used Free Percent
{{ disk.mountpoint }} {{ disk.total }} {{ disk.used }} {{ disk.free }} {{ disk.percent }}%

Network

{% for interface in network_info %} {% endfor %}
Interface IP
{{ interface.interface }} {{ interface.ip }}
{% endblock %}