@if (objects.Contactgroups.length > 0) {
|
{{ t('Contactgroups') }} ({{ objects.Contactgroups.length }})
|
}
@for (contactgroup of objects.Contactgroups; track contactgroup) {
|
{{ contactgroup.container.name }}
{{ contactgroup.container.name }}
@if (containerIds.length > 0 && containerIds.indexOf(contactgroup.container.parent_id) !== -1) {
}
|
}
@if (objects.Hosttemplates.length > 0) {
|
{{ t('Host templates') }} ({{ objects.Hosttemplates.length }})
|
}
@for (hosttemplate of objects.Hosttemplates; track hosttemplate) {
|
{{ hosttemplate.name }}
{{ hosttemplate.name }}
@if (containerIds.length > 0 && containerIds.indexOf(hosttemplate.container_id) !== -1) {
}
|
}
@if (objects.Servicetemplates.length > 0) {
|
{{ t('Service templates') }} ({{ objects.Servicetemplates.length }})
|
}
@for (servicetemplate of objects.Servicetemplates; track servicetemplate) {
|
{{ servicetemplate.name }}
{{ servicetemplate.name }}
@if (containerIds.length > 0 && containerIds.indexOf(servicetemplate.container_id) !== -1) {
}
|
}
@if (objects.Hosts.length > 0) {
|
{{ t('Hosts') }} ({{ objects.Hosts.length }})
|
}
@for (host of objects.Hosts; track host) {
|
{{ host.name }}
{{ host.name }}
@if (containerIds.length > 0 && containerIds.indexOf(host.container_id) !== -1) {
}
|
}
@if (objects.Services.length > 0) {
|
{{ t('Services') }} ({{ objects.Services.length }})
|
}
@for (service of objects.Services; track service) {
|
{{ service._matchingData.Hosts.name }} / {{ service.name }}
{{ service._matchingData.Hosts.name }} / {{ service.name }}
|
}
@if (objects.Hostescalations.length > 0) {
|
{{ t('Host escalations') }} ({{ objects.Hostescalations.length }})
|
}
@for (hostescalation of objects.Hostescalations; track hostescalation) {
|
{{ t('Host escalation') }} #{{ hostescalation.id }}
{{ t('Host escalation') }} #{{ hostescalation.id }}
@if (containerIds.length > 0 && containerIds.indexOf(hostescalation.container_id) !== -1) {
}
|
}
@if (objects.Serviceescalations.length > 0) {
|
{{ t('Service escalations') }} ({{ objects.Serviceescalations.length }})
|
}
@for (serviceescalation of objects.Serviceescalations; track serviceescalation) {
|
{{ t('Service escalation') }} #{{ serviceescalation.id }}
{{ t('Service escalation') }} #{{ serviceescalation.id }}
@if (containerIds.length > 0 && containerIds.indexOf(serviceescalation.container_id) !== -1) {
}
|
}