{% extends "base.html" %} {% block title %}Дашборд — InfoUser Monitor{% endblock %} {% block content %}

Компьютеры

Уведомления {% if unread_count %}{{ unread_count }}{% endif %}
{% for c in computers %} {% endfor %}
Хост Пользователь IP Статус CPU RAM Swap OS Последний чек
{{ c.hostname }} {% if c.current_user and ',' in c.current_user %} за ПК работают {{ c.current_user.split(',') | length }} пользователя {% else %} {{ c.current_user or '-' }} {% endif %} {{ 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 '-' }}% {% if c.current_ram_used_gb is not none and c.current_ram_total_gb is not none %} {{ c.current_ram_used_gb | round(1) }} / {{ c.current_ram_total_gb | round(1) }} GB {% else %} {{ c.current_ram_percent | round(1) if c.current_ram_percent is not none else '-' }}% {% endif %} {{ c.current_swap_percent | round(1) if c.current_swap_percent is not none else '-' }}% {{ c.os_info or '-' }} {{ c.last_seen | localtime }} Детали {% if user.role == 'admin' %} {% endif %}
{% if not computers %}
Пока нет данных. Установите и запустите агент на клиентских ПК.
{% endif %} {% endblock %} {% block scripts %} {% endblock %}