@if (objects.hosttemplates.length > 0) {
|
{{ t('Host template') }} ({{ objects.hosttemplates.length }})
|
}
@for (hosttemplate of objects.hosttemplates; track hosttemplate) {
|
{{ hosttemplate.name }}
{{ hosttemplate.name }}
|
}
@if (objects.hosts.length > 0) {
|
{{ t('Host') }} ({{ objects.hosts.length }})
|
}
@for (host of objects.hosts; track host) {
|
{{ host.name }}
{{ host.name }}
|
}
@if (objects.servicetemplates.length > 0) {
|
{{ t('Service template') }} ({{ objects.servicetemplates.length }})
|
}
@for (servicetemplate of objects.servicetemplates; track servicetemplate) {
|
{{ servicetemplate.name }}
{{ servicetemplate.name }}
|
}
@if (objects.services.length > 0) {
|
{{ t('Service') }} ({{ objects.services.length }})
|
}
@for (service of objects.services; track service) {
|
{{ service.name }}
{{ service.name }}
|
}
@if (objects.hostescalations.length > 0) {
|
{{ t('Host escalation') }} ({{ objects.hostescalations.length }})
|
}
@for (hostescalation of objects.hostescalations; track hostescalation) {
|
{{ t('Host escalation') }} #{{ hostescalation.id }}
{{ t('Host escalation') }} #{{ hostescalation.id }}
|
}
@if (objects.serviceescalations.length > 0) {
|
{{ t('Service escalation') }} ({{ objects.serviceescalations.length }})
|
}
@for (serviceescalation of objects.serviceescalations; track serviceescalation) {
|
{{ t('Service escalation') }} #{{ serviceescalation.id }}
{{ t('Service escalation') }} #{{ serviceescalation.id }}
|
}