{% extends "base.html" %} {% block title %}Dashboard - WebSocket SSH Daemon{% endblock %} {% block content %}

Connected Clients

{% if clients %}
{% for client in clients %}
{{ client }}

Connected

Connect
{% endfor %}
{% else %}

No clients connected

Clients will appear here when they connect to the daemon.

{% endif %}

Quick Actions

{% if current_user.is_admin %} Manage Users {% endif %}

System Info

WebSocket Port: {{ websocket_port or 'N/A' }}

Domain: {{ domain or 'N/A' }}

Connected Clients: {{ clients|length }}

{% endblock %} {% block scripts %} {% endblock %}