{{/* Copyright 2014 Team 254. All Rights Reserved. Author: pat@patfairbank.com (Patrick Fairbank) UI for entering and tracking fouls and red/yellow cards. */}} Referee Panel - {{.EventSettings.Name}} - Cheesy Arena {{if .EntryEnabled}}

{{.MatchType}} Match {{.MatchDisplayName}}

Fouls

{{range $foul := .RedFouls}} {{template "foul" dict "foul" $foul "color" "red"}} {{end}} {{range $foul := .BlueFouls}} {{template "foul" dict "foul" $foul "color" "blue"}} {{end}}

Yellow/Red Cards

{{template "card" dict "team" .Red1 "alliance" "red" "cards" .RedCards}} {{template "card" dict "team" .Red2 "alliance" "red" "cards" .RedCards}} {{template "card" dict "team" .Red3 "alliance" "red" "cards" .RedCards}} {{template "card" dict "team" .Blue1 "alliance" "blue" "cards" .BlueCards}} {{template "card" dict "team" .Blue2 "alliance" "blue" "cards" .BlueCards}} {{template "card" dict "team" .Blue3 "alliance" "blue" "cards" .BlueCards}}

Add Foul


Clear Foul

{{else}}

Waiting for the next match...

{{end}} {{define "foul"}} {{.foul.TeamId}} {{.foul.RuleNumber}}{{if .foul.IsTechnical}}T{{end}} Delete {{end}} {{define "card"}} {{.team.Id}}
{{end}}