@if (objects.Instantreports.length > 0) {
|
{{ t('Instant reports') }} ({{ objects.Instantreports.length }})
|
}
@for (instantreport of objects.Instantreports; track instantreport) {
|
{{ instantreport.name }}
{{ instantreport.name }}
|
}
@if (PermissionsService.hasModuleObservable('AutoreportModule')|async) {
@if (objects.Autoreports.length > 0) {
|
{{ t('Autoreports') }} ({{ objects.Autoreports.length }})
|
}
@for (autoreport of objects.Autoreports; track autoreport) {
|
{{ autoreport.name }}
{{ autoreport.name }}
|
}
}
@if (PermissionsService.hasModuleObservable('EventcorrelationModule')|async) {
@if (objects.Eventcorrelations.length > 0) {
|
{{ t('Eventcorrelations') }} ({{ objects.Eventcorrelations.length }})
|
}
@for (evc of objects.Eventcorrelations; track evc) {
|
{{ evc.Hosts.name }}
{{ evc.Hosts.name }}
|
}
}
@if (PermissionsService.hasModuleObservable('MapModule')|async) {
@if (objects.Maps.length > 0) {
|
{{ t('Maps') }} ({{ objects.Maps.length }})
|
}
@for (map of objects.Maps; track map) {
|
{{ map.name }}
{{ map.name }}
|
}
}
@if (objects.Hostgroups.length > 0) {
|
{{ t('Host Groups') }} ({{ objects.Hostgroups.length }})
|
}
@for (hostgroup of objects.Hostgroups; track hostgroup) {
|
{{ hostgroup.name }}
{{ hostgroup.name }}
|
}