@if (customEventDetail) {
{{customEventDetail.eventDate | date: 'dd.MM.yyyy'}}
Name: {{customEventDetail.name}}

Description: {{customEventDetail.description}}

@if (customEventDetail.customEventCategoryId) {

Category: {{customEventDetail.categoryName}}

}

Point event:

Participation event:

@if (customEventDetail.isParticipationEvent) {

Participation rate:

}

Status: @if (customEventDetail.isInProgress) { In Progress } @else { Done }


Creator: {{customEventDetail.createdBy}}

@if (customEventDetail.modifiedOn) {

Modified: {{customEventDetail.modifiedOn | date: 'dd.MM.yyyy HH:mm'}} by {{customEventDetail.modifiedBy}}

}

Participants

@for (player of customEventDetail.customEventParticipants; track player.id) {
{{player.playerName}}
@if (customEventDetail.isPointsEvent) {
Achieved Points: {{player.achievedPoints | number}}
} @if (customEventDetail.isParticipationEvent) {
Participated:
}
}
}