@if (desertStormDetail) {
Week {{desertStormDetail.eventDate | week}} / {{desertStormDetail.eventDate | date: 'yyyy'}}
@if (desertStormDetail.isInProgress) {
In Progress
} @else {
{{desertStormDetail.won ? 'VICTORY' : 'DEFEAT'}}
}
Opponent: {{desertStormDetail.opponentName}}

Team: {{desertStormDetail.team}}

Server: {{desertStormDetail.opponentServer}}

Opponent participants: {{desertStormDetail.opposingParticipants}}

Allianz participants: {{desertStormDetail.participants | number}}


Creator: {{desertStormDetail.createdBy}}

@if (desertStormDetail.modifiedOn) {

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

}

Registered: {{registeredPlayers}}

Start player: {{startedPlayers}}

Participated: {{participatedPlayers}}


Players

@for (player of filteredPlayers; track player.id; let i = $index) { @if (player.registered) {
{{player.playerName}}
} }
}