@if (objects.Contacts.length > 0) {
|
{{ t('Contacts') }} ({{ objects.Contacts.length }})
|
}
@for (contact of objects.Contacts; track contact) {
|
{{ contact.name }}
{{ contact.name }}
|
}
@if (objects.Hosttemplates.length > 0) {
|
{{ t('Host templates') }} ({{ objects.Hosttemplates.length }})
|
}
@for (hosttemplate of objects.Hosttemplates; track hosttemplate) {
|
{{ hosttemplate.name }}
{{ hosttemplate.name }}
|
}
@if (objects.Servicetemplates.length > 0) {
|
{{ t('Service templates') }} ({{ objects.Servicetemplates.length }})
|
}
@for (servicetemplate of objects.Servicetemplates; track servicetemplate) {
|
{{ servicetemplate.name }}
{{ servicetemplate.name }}
|
{{ servicetemplate.template_name }}
|
}
@if (objects.Hosts.length > 0) {
|
{{ t('Hosts') }} ({{ objects.Hosts.length }})
|
}
@for (host of objects.Hosts; track host) {
|
{{ host.name }}
{{ host.name }}
|
}
@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 }}
|
}