diff options
author | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-07-30 13:10:29 +0200 |
---|---|---|
committer | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-08-05 10:03:12 +0200 |
commit | 3e35997131f51e892b93157c6d18a3a0ba759318 (patch) | |
tree | c722d8601b7b4f36af12db95a905ca6212abdda0 /ogcp/templates/dashboard.html | |
parent | 695b83d4730e624a7cffa7e6ee14a64ece226eb8 (diff) |
ogcp: add connected clients list view
Add view to show the connected clients with access to the client
details of each one. The view is accessible through the main
dashboard.
Diffstat (limited to 'ogcp/templates/dashboard.html')
-rw-r--r-- | ogcp/templates/dashboard.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ogcp/templates/dashboard.html b/ogcp/templates/dashboard.html index 7cd300b..3ec2cd8 100644 --- a/ogcp/templates/dashboard.html +++ b/ogcp/templates/dashboard.html @@ -26,7 +26,7 @@ <th>{{ server.name }}</th> <td>{{ server.time_dict.boot }}</td> <td>{{ server.time_dict.start }}</td> - <td>{{ server.clients | length }}</td> + <td><a href="{{ url_for('client_list') }}">{{ server.clients | length }}</a></td> <td><a href="{{ url_for('images') }}">{{ server.images | length }}</a></td> <td> {% set disk = server.disk %} |