{% extends "base.html" %} {% block title %}Дашборд — InfoUser Monitor{% endblock %} {% block content %}
| Хост | Пользователь | IP | Статус | CPU | RAM | 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 '-' }}% | {{ 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 %} | Детали {% if user.role == 'admin' %} {% endif %} |