{% extends "base.html" %} {% block title %}Дашборд — InfoUser Monitor{% endblock %} {% block content %}
| Хост | Пользователь | IP | Статус | CPU | RAM | OS | Последний чек | |
|---|---|---|---|---|---|---|---|---|
| {{ c.hostname }} | {{ c.current_user or '-' }} | {{ c.current_ip or '-' }} | {% if c.status == 'online' %} Online {% else %} Offline {% endif %} | {{ c.current_cpu_percent | round(1) if c.current_cpu_percent is not none else '-' }}% | {{ c.current_ram_percent | round(1) if c.current_ram_percent is not none else '-' }}% | {{ c.os_info or '-' }} | {% if c.last_seen %}{{ c.last_seen.strftime('%Y-%m-%d %H:%M') }}{% else %}-{% endif %} | Детали |