diff --git a/ogWebconsole/src/app/components/groups/groups.component.css b/ogWebconsole/src/app/components/groups/groups.component.css index 71ff99a..d99a3ac 100644 --- a/ogWebconsole/src/app/components/groups/groups.component.css +++ b/ogWebconsole/src/app/components/groups/groups.component.css @@ -599,4 +599,11 @@ button[mat-raised-button] { font-size: x-large; display: block; margin-bottom: 1.5rem; +} + +.no-clients-info { + display: flex; + align-items: center; + gap: 10px; + margin-top: 1.5rem; } \ No newline at end of file diff --git a/ogWebconsole/src/app/components/groups/groups.component.html b/ogWebconsole/src/app/components/groups/groups.component.html index e53b602..08ddb74 100644 --- a/ogWebconsole/src/app/components/groups/groups.component.html +++ b/ogWebconsole/src/app/components/groups/groups.component.html @@ -1,3 +1,4 @@ +
+ {{ 'filters' | translate }} @@ -54,6 +56,7 @@ +
+ +
+

{{ selectedUnidad?.name }}

@@ -160,8 +166,10 @@
+ + -
- {{ 'clients' | translate }} {{ selectedNode?.name ? ' ' + selectedNode?.name : ' ' + selectedUnidad?.name }} -
-
-
- Client Icon -
- {{ client.name }} - {{ client.ip }} - {{ client.mac }} + +
+ {{ 'clients' | translate }} + {{ selectedNode?.name ? ' ' + selectedNode?.name : ' ' + selectedUnidad?.name }} + -
+ + +
+ +
+
+
+ Client Icon + +
+ {{ client.name }} + {{ client.ip }} + {{ client.mac }} + +
+ + + + + + +
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + +
{{ 'status' | translate }} + Client Icon + {{ 'sync' | translate }} + {{ 'name' | translate }} +
+
{{ client.name }}
+
{{ client.ip }}
+
{{ client.mac }}
+
+
OG Live {{ (client.ogLive?.filename || '').slice(0, 15) }}{{ (client.ogLive?.filename?.length > 15) ? '...' : '' }} {{ 'maintenance' | translate }} {{ client.maintenance }} {{ 'subnet' | translate }} {{ client.subnet }} {{ 'pxeTemplate' | translate }} {{ client.template?.name }} {{ 'parent' | translate }} {{ client.parentName }} {{ 'actions' | translate }} + - - - + + + + + +
+
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
{{ 'status' | translate }} - Client Icon - {{ 'sync' | translate }} - - - - {{ 'name' | translate }} -
-
{{ client.name }}
-
{{ client.ip }}
-
{{ client.mac }}
-
-
OG Live {{ (client.ogLive?.filename || '').slice(0, 15) }}{{ (client.ogLive?.filename?.length > 15) ? '...' : '' }} {{ 'maintenance' | translate }} {{ client.maintenance }} {{ 'subnet' | translate }} {{ client.subnet }} {{ 'pxeTemplate' | translate }} {{ client.template?.name }} {{ 'parent' | translate }} {{ client.parentName }} {{ 'actions' | translate }} - - - - - - - -
- -
+ + + +
+ error_outline + {{ 'noClients' | translate }} +
+
diff --git a/ogWebconsole/src/locale/en.json b/ogWebconsole/src/locale/en.json index b53b76a..32bffd7 100644 --- a/ogWebconsole/src/locale/en.json +++ b/ogWebconsole/src/locale/en.json @@ -449,5 +449,6 @@ "adminUsersTitle": "Manage users", "filtersPanelStepText": "Use these filters to search or load configurations.", "organizationalUnitsStepText": "List of Organizational Units. Click on one to view details.", - "defaultMenuLabel": "Main menu" + "defaultMenuLabel": "Main menu", + "noClients": "No clients" } diff --git a/ogWebconsole/src/locale/es.json b/ogWebconsole/src/locale/es.json index a37b32e..016e8c1 100644 --- a/ogWebconsole/src/locale/es.json +++ b/ogWebconsole/src/locale/es.json @@ -451,5 +451,6 @@ "adminUsersTitle": "Administrar usuarios", "filtersPanelStepText": "Utiliza estos filtros para buscar o cargar configuraciones.", "organizationalUnitsStepText": "Lista de Unidades Organizacionales. Haz clic en una para ver detalles.", - "defaultMenuLabel": "MenĂº por defecto" + "defaultMenuLabel": "MenĂº por defecto", + "noClients": "No hay clientes" }