{{ t('Edit status page') }} {{ post.name }}
{{ t('Please select a container.') }}
{{ t('Access control') }}
⚠️ {{ t('Grant unrestricted access to this Statuspage without user authentication.') }}
{{ t('Downtime and Acknowledgements') }}
{{ t('Determines if running and planed downtimes are displayed on the status page') }}
{{ t('Determines if the comments of the downtime are displayed on the status page.') }}
{{ t('Determines if acknowledgements are displayed on the status page') }}
{{ t('Determines if the comments of the acknowledgements are displayed on the status page.') }}
{{ t('Status page items') }} {{ t('You must select at least one configuration item for status page.') }}
{{ t('Hostgroup name') }} {{ t('Display name') }} @for (hostgroup of hostgroups; track $index) { @if (post.selected_hostgroups._ids.indexOf(hostgroup.id) !== -1) { @if (this.PermissionsService.hasPermissionObservable(['hostgroups', 'extended'])|async) { {{ hostgroup.value }} } @else { {{ hostgroup.value }} } } }
@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 }} } } } }