{{ t('Regular expression for hosts') }}: {{ automapResult.automap.host_regex }} {{ t('Regular expression for host groups') }}: {{ automapResult.automap.hostgroup_regex }} {{ t('Regular expression for services') }}: {{ automapResult.automap.service_regex }} {{ t('Recursive') }}: @if (!automapResult.automap.recursive) { {{ t('Disabled') }} } @if (automapResult.automap.recursive) { {{ t('Enabled') }} } @if (!automapResult.automap.show_label && !automapResult.automap.group_by_host) { @for (host of automapResult.servicesByHost; track $index) { @for (service of host.services; track $index) { } } } @if (!automapResult.automap.show_label && automapResult.automap.group_by_host) { @for (host of automapResult.servicesByHost; track host; let i = $index) {

{{ host.host.hostname }}

@for (service of host.services; track $index) { }
}
} @if (automapResult.automap.show_label && !automapResult.automap.group_by_host) { @for (host of automapResult.servicesByHost; track $index) { @for (service of host.services; track $index) { {{ host.host.hostname }}/{{ service.service.servicename }} } } } @if (automapResult.automap.show_label && automapResult.automap.group_by_host) { @for (host of automapResult.servicesByHost; track host; let i = $index) {

{{ host.host.hostname }}

@for (service of host.services; track $index) { {{ service.service.servicename }} }
}
} @if (automapResult) { }
@if (includeServicesBrowserModal()) { }