{% extends "base.html" %} {% block title %}Clients - Fixture Manager{% endblock %} {% block content %}
| 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. | ||||||