{% extends "base.html" %} {% block content %}
List of registered clients. Click on a client ID to view details.
| ID | Name | Owner | Last Ping | Last Backup | Commands | Actions |
|---|---|---|---|---|---|---|
| {{ client.id }} | {{ client.name }} | {{ client.owner.username }} | {{ client.last_ping if client.last_ping else '-' }} | {{ client.last_backup if client.last_backup else '-' }} |
{% if client.pre_commands %}
{{ client.pre_commands|replace('\n', ' ')|safe }} {% else %} - {% endif %} |
Details |