{% extends "base.html" %} {% block title %}Clients - Fixture Manager{% endblock %} {% block content %}

Connected Clients

Online Offline
Client Status: Clients are considered online if they've sent a request to the API in the last 30 minutes. The list shows all clients first (online), followed by offline clients.
{% if clients %} {% for client in clients %} {% endfor %} {% else %} {% endif %}
Client Name RustDesk ID Status Last Seen Remote Link IP Address User Agent
{{ client.token_name }}
{{ client.username }}
{{ client.rustdesk_id }} {% if client.is_online %} Online {% else %} Offline {% endif %} {{ client.last_seen_formatted }}
{{ client.last_seen_ago }}
{% if client.is_online %} Connect {% else %} Not available {% endif %} {% if client.ip_address %} {{ client.ip_address }} {% else %} Unknown {% endif %} {% if client.user_agent %} {{ client.user_agent[:50] }}{% if client.user_agent|length > 50 %}...{% endif %} {% else %} Unknown {% endif %}
No clients found. Clients will appear here when they connect to the API.
Note: The remote link format is: https://{rustdesk_id}.remote.{remote_domain}
Default remote domain: townshipscombatleague.com (configurable in admin settings)
{% endblock %} {% block extra_css %} {% endblock %}