<h2>Games</h2> <table class="games"> <tr *ngFor="let game of games"> <span class="badge">{{game.id}}</span> <th>{{game.gameDateTime}}</th> <th>{{game.homeTeam.name}}</th> <th>{{game.awayTeam.name}}</th> <th>{{game.homeTeamScore}}:{{game.awayTeamScore}}</th> <th><app-delete-game-button [id]=game.id (onDelete)="triggerRefreshEvent()"></app-delete-game-button></th> </tr> </table>