{{ t('Container') }}
{{ t('Containers') }} {{ t('details') }}
{{ t('Containers map') }}
@if (!containerDetails) { } @if (containerDetails) { @for (container of containerDetails; track container; let i = $index) { {{ container.name }} @if (container.containertype_id === ContainerTypesEnum.CT_TENANT) { {{ t('Tenant') }} } @if (container.containertype_id === ContainerTypesEnum.CT_LOCATION) { {{ t('Location') }} } @if (container.containertype_id === ContainerTypesEnum.CT_NODE) { {{ t('Node') }} } @if (container.childsElements) { @for (details of objectDetails; track $index) { @if (hasChildElementsForObjectDetails(container.childsElements, details)) { } }
{{ details.label }} @for (element of this.getChildElementsByTypeAsIterator(container.childsElements, details); track $index) {
@if (PermissionsService.hasPermissionObservable(details.rights)|async) { {{ element.value }} } @else { {{ element.value }} }
}
} @if (!container.childsElements) {
{{ t('Container has no child elements') }}
}
}
}