Name
{{ period()!.name }}
Description
{{ period()!.description }}
Begin Date
{{ period()!.beginDate | formatMediumDate }}
End Date
{{ period()!.endDate | formatMediumDate }}
State
{{ { null: '', CREATED: 'CREATED',OPENED: 'OPENED', CLOSED: 'CLOSED', PROCESSING: 'PROCESSING', ENDED: 'ENDED' }[period()!.state ?? 'null'] }}
@if(period()!.periodVersions!.length>0) {
Name Description Period Version State
{{i+1}} {{ periodVersion!.name }} {{ periodVersion!.description }} {{ periodVersion!.periodVersion }} {{ { null: '', PROCESSING: 'PROCESSING', ENDED: 'ENDED', ERROR: 'ERROR' }[periodVersion!.state ?? 'null'] }}
}