diff --git a/ogWebconsole/src/app/app.module.ts b/ogWebconsole/src/app/app.module.ts index c005cc9..d1f5901 100644 --- a/ogWebconsole/src/app/app.module.ts +++ b/ogWebconsole/src/app/app.module.ts @@ -113,6 +113,9 @@ import { SoftwareProfileComponent } from './components/software-profile/software import { CreateSoftwareProfileComponent } from './components/software-profile/create-software-profile/create-software-profile.component'; import { OperativeSystemComponent } from './components/operative-system/operative-system.component'; import { CreateOperativeSystemComponent } from './components/operative-system/create-operative-system/create-operative-system.component'; +import { ShowTemplateContentComponent } from './components/ogboot/pxe/show-template-content/show-template-content.component'; +import { AddClientsToPxeComponent } from './components/ogboot/pxe/add-clients-to-pxe/add-clients-to-pxe.component'; +import { ClientsComponent } from './components/ogboot/pxe/clients/clients.component'; @NgModule({ declarations: [ AppComponent, @@ -183,6 +186,9 @@ import { CreateOperativeSystemComponent } from './components/operative-system/cr CreateSoftwareProfileComponent, OperativeSystemComponent, CreateOperativeSystemComponent, + ShowTemplateContentComponent, + AddClientsToPxeComponent, + ClientsComponent, ], bootstrap: [AppComponent], imports: [BrowserModule, diff --git a/ogWebconsole/src/app/components/commands/commands-groups/commands-groups.component.ts b/ogWebconsole/src/app/components/commands/commands-groups/commands-groups.component.ts index 9952b25..d42db5b 100644 --- a/ogWebconsole/src/app/components/commands/commands-groups/commands-groups.component.ts +++ b/ogWebconsole/src/app/components/commands/commands-groups/commands-groups.component.ts @@ -74,13 +74,13 @@ export class CommandsGroupsComponent implements OnInit { openCreateCommandGroupModal(): void { this.dialog.open(CreateCommandGroupComponent, { - width: '600px', + width: '700px', }).afterClosed().subscribe(() => this.search()); } editCommandGroup(group: any): void { this.dialog.open(CreateCommandGroupComponent, { - width: '600px', + width: '700px', data: { group }, }).afterClosed().subscribe(() => this.search()); } diff --git a/ogWebconsole/src/app/components/groups/components/advanced-search/advanced-search.component.css b/ogWebconsole/src/app/components/groups/components/advanced-search/advanced-search.component.css index 89c5670..3c87242 100644 --- a/ogWebconsole/src/app/components/groups/components/advanced-search/advanced-search.component.css +++ b/ogWebconsole/src/app/components/groups/components/advanced-search/advanced-search.component.css @@ -249,3 +249,13 @@ mat-card { border-radius: 12px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); } + +.red-card { + background-color: #f35f53; /* Color rojo */ + color: white; /* Texto en blanco */ +} + +.green-card { + background-color: #4caf50; /* Color verde */ + color: white; /* Texto en blanco */ +} diff --git a/ogWebconsole/src/app/components/groups/components/advanced-search/advanced-search.component.html b/ogWebconsole/src/app/components/groups/components/advanced-search/advanced-search.component.html index 927b763..f633b05 100644 --- a/ogWebconsole/src/app/components/groups/components/advanced-search/advanced-search.component.html +++ b/ogWebconsole/src/app/components/groups/components/advanced-search/advanced-search.component.html @@ -94,15 +94,23 @@ +
{{ column.header }} | -
-
+ |
+
+ {{ client.name }}
+ {{ client.ip }}
+ {{ client.mac }}
+ {{ column.header }} |
- |
Administrar grupos@@ -9,12 +9,6 @@
-
@@ -147,13 +141,13 @@
Acciones- -
+
+
diff --git a/ogWebconsole/src/app/components/groups/shared/organizational-units/create-organizational-unit/create-organizational-unit.component.ts b/ogWebconsole/src/app/components/groups/shared/organizational-units/create-organizational-unit/create-organizational-unit.component.ts
index a0b7089..bffb4a9 100644
--- a/ogWebconsole/src/app/components/groups/shared/organizational-units/create-organizational-unit/create-organizational-unit.component.ts
+++ b/ogWebconsole/src/app/components/groups/shared/organizational-units/create-organizational-unit/create-organizational-unit.component.ts
@@ -19,7 +19,7 @@ export class CreateOrganizationalUnitComponent implements OnInit {
classroomInfoFormGroup: FormGroup;
types: string[] = ['organizational-unit', 'classrooms-group', 'classroom', 'clients-group'];
typeTranslations: { [key: string]: string } = {
- 'organizational-unit': 'Unidad organizativa',
+ 'organizational-unit': 'Centro',
'classrooms-group': 'Grupo de aulas',
'classroom': 'Aula',
'clients-group': 'Grupo de clientes'
diff --git a/ogWebconsole/src/app/components/groups/shared/tree-view/tree-view.component.html b/ogWebconsole/src/app/components/groups/shared/tree-view/tree-view.component.html
index e15be5b..1cf2ee4 100644
--- a/ogWebconsole/src/app/components/groups/shared/tree-view/tree-view.component.html
+++ b/ogWebconsole/src/app/components/groups/shared/tree-view/tree-view.component.html
@@ -51,6 +51,6 @@
- |
---|