diff --git a/pandora_console/godmode/agentes/pandora_networkmap_empty.editor.php b/pandora_console/godmode/agentes/pandora_networkmap_empty.editor.php
index 6fa81baca7..f2a8b8df64 100644
--- a/pandora_console/godmode/agentes/pandora_networkmap_empty.editor.php
+++ b/pandora_console/godmode/agentes/pandora_networkmap_empty.editor.php
@@ -117,79 +117,91 @@ if ($not_found) {
$table = new StdClass();
$table->id = 'form_editor';
- $table->width = '98%';
- $table->class = 'databox_color';
-
- $table->head = [];
-
- $table->size = [];
- $table->size[0] = '30%';
+ $table->width = '100%';
+ $table->class = 'databox filter-table-adv';
$table->style = [];
- $table->style[0] = 'font-weight: bold; width: 150px;';
+ $table->style[0] = 'width: 50%';
$table->data = [];
- $table->data[0][0] = __('Name');
- $table->data[0][1] = html_print_input_text(
- 'name',
- $name,
- '',
- 30,
- 100,
- true
- );
- $table->data[1][0] = __('Group');
- $table->data[1][1] = '
'.html_print_select_groups(
- false,
- 'AR',
- true,
- 'id_group',
- $id_group,
- '',
- '',
- 0,
- true
- ).'
';
-
- $table->data[2][0] = __('Node radius');
- $table->data[2][1] = html_print_input_text(
- 'node_radius',
- $node_radius,
- '',
- 2,
- 10,
- true
+ $table->data[0][] = html_print_label_input_block(
+ __('Name'),
+ html_print_input_text(
+ 'name',
+ $name,
+ '',
+ 30,
+ 100,
+ true
+ ),
+ [ 'div_class' => 'w50p' ]
);
- $table->data[3][0] = __('Description');
- $table->data[3][1] = html_print_textarea('description', 7, 25, $description, '', true);
+ $table->data[1][] = html_print_label_input_block(
+ __('Group'),
+ html_print_select_groups(
+ false,
+ 'AR',
+ true,
+ 'id_group',
+ $id_group,
+ '',
+ '',
+ 0,
+ true
+ ),
+ [ 'div_class' => 'w50p' ]
+ );
+
+ $table->data[2][] = html_print_label_input_block(
+ __('Node radius'),
+ html_print_input_text(
+ 'node_radius',
+ $node_radius,
+ '',
+ 2,
+ 10,
+ true
+ ),
+ [ 'div_class' => 'w50p' ]
+ );
+
+ $table->data[3][] = html_print_label_input_block(
+ __('Description'),
+ html_print_textarea(
+ 'description',
+ 7,
+ 25,
+ $description,
+ '',
+ true
+ )
+ );
echo '