@if (objects.Contacts.length > 0) {
|
{{ t('Contacts') }} ({{ objects.Contacts.length }})
|
@for (contact of objects.Contacts; track $index) {
|
{{ contact.name }}
|
}
}
@if (objects.Hostdependencies.length > 0) {
|
{{ t('Host dependencies') }} ({{ objects.Hostdependencies.length }})
|
@for (hostdependency of objects.Hostdependencies; track $index) {
|
{{ t('Host dependency') }} #{{ $index + 1 }}
|
}
}
@if (objects.Hostescalations.length > 0) {
|
{{ t('Host escalations') }} ({{ objects.Hostescalations.length }})
|
@for (hostescalation of objects.Hostescalations; track $index) {
|
{{ t('Host escalation') }} #{{ $index + 1 }}
|
}
}
@if (objects.Hosts.length > 0) {
|
{{ t('Hosts') }} ({{ objects.Hosts.length }})
|
@for (host of objects.Hosts; track $index) {
|
{{ host.name }}
|
}
}
@if (objects.Hosttemplates.length > 0) {
|
{{ t('Host templates') }} ({{ objects.Hosttemplates.length }})
|
@for (hosttemplate of objects.Hosttemplates; track $index) {
|
{{ hosttemplate.name }}
|
}
}
@if (objects.Hosttemplates.length > 0) {
|
{{ t('Instant reports') }} ({{ objects.Instantreports.length }})
|
@for (instantreport of objects.Instantreports; track $index) {
|
{{ instantreport.name }}
|
}
}
@if (objects.Servicedependencies.length > 0) {
|
{{ t('Service dependencies') }} ({{ objects.Servicedependencies.length }})
|
@for (servicedependency of objects.Servicedependencies; track $index) {
|
{{ t('Service dependency') }} #{{ $index + 1 }}
|
}
}
@if (objects.Serviceescalations.length > 0) {
|
{{ t('Service escalations') }} ({{ objects.Serviceescalations.length }})
|
@for (serviceescalation of objects.Serviceescalations; track $index) {
|
{{ t('Service escalation') }} #{{ $index + 1 }}
|
}
}
@if (objects.Services.length > 0) {
|
{{ t('Services') }} ({{ objects.Services.length }})
|
@for (service of objects.Services; track $index) {
|
{{ service._matchingData.Hosts.name }} / {{ service.servicename }}
|
}
}
@if (objects.Servicetemplates.length > 0) {
|
{{ t('Service templates') }} ({{ objects.Servicetemplates.length }})
|
@for (servicetemplate of objects.Servicetemplates; track $index) {
|
{{ servicetemplate.name }}
|
}
}
@if (objects.Timeperiods.length > 0) {
|
{{ t('Time periods (as excluded time period)') }}
({{ objects.Timeperiods.length }})
|
@for (timeperiod of objects.Timeperiods; track $index) {
|
{{ timeperiod.name }}
|
}
}
@if (objects.Autoreports.length > 0) {
|
{{ t('Autoreports') }} ({{ objects.Autoreports.length }})
|
@for (autoreport of objects.Autoreports; track $index) {
|
{{ autoreport.name }}
|
}
}