Added web interface and team list report.

This commit is contained in:
Patrick Fairbank
2014-05-25 22:41:28 -07:00
parent 1591e96f08
commit 764b71eb88
6 changed files with 163 additions and 2 deletions

3
templates/teams.csv Normal file
View File

@@ -0,0 +1,3 @@
Number,Name,Nickname,City,StateProv,Country,RookieYear,RobotName
{{range $team := .}}{{$team.Id}},"{{$team.Name}}","{{$team.Nickname}}","{{$team.City}}","{{$team.StateProv}}","{{$team.Country}}",{{$team.RookieYear}},"{{$team.RobotName}}"
{{end}}
1 Number Name Nickname City StateProv Country RookieYear RobotName
2 {{range $team := .}}{{$team.Id}} {{$team.Name}} {{$team.Nickname}} {{$team.City}} {{$team.StateProv}} {{$team.Country}} {{$team.RookieYear}} {{$team.RobotName}}
3 {{end}}