{% extends "base.html" %} {% block title %}{{ org.name }} · SD RMM{% endblock %} {% block content %} {% if not rows %}

No agents enrolled in this organization yet.

{% if user.is_super_admin %}

Go to org admin to generate an install token.

{% endif %}
{% else %} {% for r in rows %} {% endfor %}
HostnameOSCPURAMDiskLast seen
{{ r.agent.hostname }} {{ r.agent.os }} {{ r.agent.os_version or '' }} {% if r.latest %}{{ "%.0f"|format(r.latest.cpu_pct) }}%{% else %}—{% endif %} {% if r.latest %}{{ "%.0f"|format(r.latest.ram_pct) }}%{% else %}—{% endif %} {% if r.latest %}{{ "%.0f"|format(r.latest.disk_pct) }}%{% else %}—{% endif %} {% if r.agent.last_seen_at %} {% else %} never {% endif %} Details
{% endif %} {% endblock %}