Features: - Real-time Proxmox cluster monitoring (nodes, LXC containers) - Camera integration with go2rtc streams - Arr stack download progress monitoring - PBS backup status - Docker container status - Uptime Kuma service health - FastAPI backend with HTMX frontend
21 lines
998 B
HTML
21 lines
998 B
HTML
<div class="space-y-2">
|
|
{% for host in hosts %}
|
|
<div class="card rounded-lg p-2">
|
|
<div class="flex items-center justify-between text-xs text-gray-400 mb-2">
|
|
<span class="font-medium">{{ host.name }}</span>
|
|
<span class="text-[10px]">{{ counts.get(host.name, 0) }} running</span>
|
|
</div>
|
|
<div class="flex flex-wrap gap-1">
|
|
{% for container in containers if container.host == host.name %}
|
|
<div class="flex items-center gap-1.5 px-2 py-1 rounded bg-dark-700 text-xs">
|
|
<span class="w-1.5 h-1.5 rounded-full {% if container.state == 'running' %}bg-emerald-500{% else %}bg-red-500{% endif %}"></span>
|
|
<span class="text-gray-300 truncate max-w-[80px]" title="{{ container.name }}">{{ container.name }}</span>
|
|
</div>
|
|
{% else %}
|
|
<span class="text-gray-500 text-xs">No containers</span>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|