{{ t('Please select a container.') }}
{{ t('Determines if the comments of the acknowledgements are displayed on the status page.') }}
@if (post.selected_servicegroups._ids.length > 0) {
{{ t('Servicegroup name') }}
{{ t('Display name') }}
@for (servicegroup of servicegroups; ; track $index) {
@if (post.selected_servicegroups._ids.indexOf(servicegroup.id) !== -1) {
@if (this.PermissionsService.hasPermissionObservable(['servicegroups', 'extended'])|async) {
{{ servicegroup.value }}
} @else {
{{ servicegroup.value }}
}
}
}
}
@if (post.selected_hosts._ids.length > 0) {
{{ t('Host name') }}
{{ t('Display name') }}
@for (host of hosts; ; track $index) {
@if (post.selected_hosts._ids.indexOf(host.id) !== -1) {
@if (this.PermissionsService.hasPermissionObservable(['hosts', 'browser'])|async) {
{{ host.value }}
} @else {
{{ host.value }}
}
}
}
}
@if (post.selected_services._ids.length > 0) {
{{ t('Service name') }}
{{ t('Display name') }}
@for (service of services; track $index) {
@if (post.selected_services._ids.indexOf(service.id) !== -1) {
@if (this.PermissionsService.hasPermissionObservable(['services', 'browser'])|async) {
{{ service.value }}
} @else {
{{ service.value }}
}
}
}
}