@if (organizationType()) {

Organization Type


Code
{{ organizationType()!.code }}
Name
{{ organizationType()!.name }}
Description
{{ organizationType()!.description }}
Nature
{{ { null: '', ORGANIZATION: 'ORGANIZATION', PERSON: 'PERSON', FACILITY: 'FACILITY', LEVEL: 'LEVEL' }[ organizationType()!.nature ?? 'null' ] }}
Icon
@if (organizationType()!.icon) {
organizationType {{ organizationType()!.iconContentType }}, {{ byteSize(organizationType()!.icon ?? '') }}
}
Metadata Properties
@for (metadataProperties of organizationType()!.metadataProperties; track $index; let last = $last) { {{ metadataProperties?.name }}{{ last ? '' : ', ' }} }
}