-
Notifications
You must be signed in to change notification settings - Fork 0
/
Result.html
66 lines (56 loc) · 2.92 KB
/
Result.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!doctype html>
<html ng-app="tourneyApp">
<title>Cyburi Summer 2018 Linear Ranking</title>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.10/angular.min.js"></script>
<script src="tourney.js"></script>
<link rel="stylesheet" href="tourney.css">
<base href="/" />
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<h1>Cyburi Summer 2018 Linear Ranking</h2>
<div ng-controller="TourneyListController as tourneyList">
Have games teach the games. The best way to learn volleyball skills is playing 2vs2 or 3vs3. Randomized matches are computerized generated each time. Rank is based on #game played, #game won, total points by using a method of the mathematician Bjerring; and more detailed whitepaper can be found <a href="/resource/LinearRankingTournament.pdf">here</a>.<br>
<small><b><i>**GP-Game Played, GW-Game Won, GL-Game Lost, Points-Total Points</i></b></small>
<h2> GROUP1 POOL</h1>
<table>
<tr><th>Rank</th><th>Player Name</th><th>GP</th><th>GW</th><th>GL</th><th>Points</th></tr>
<tr ng-repeat="player in tourneyList.names | orderBy:['-gamePlayed','-gameWon','-totalPoints'] |filter:'Gold':true">
<td align=center>{{$index +1}}</td>
<td>{{player.text}}</td>
<td align=center>{{player.gamePlayed}}</td>
<td align=center>{{player.gameWon}}</td>
<td align=center>{{player.gameLost}}</td>
<td align=center>{{player.totalPoints}}</td>
</tr>
</table>
<h2> GROUP2 POOL</h1>
<table>
<tr><th>Rank</th><th>Player Name</th><th>GP</th><th>GW</th><th>GL</th><th>Points</th></tr>
<tr ng-repeat="player in tourneyList.names | orderBy:['-gamePlayed','-gameWon','-totalPoints'] |filter:'Silver':true">
<td align=center>{{$index +1}}</td>
<td>{{player.text}}</td>
<td align=center>{{player.gamePlayed}}</td>
<td align=center>{{player.gameWon}}</td>
<td align=center>{{player.gameLost}}</td>
<td align=center>{{player.totalPoints}}</td>
</tr>
</table>
<h2> UNASSIGNED GROUP POOL</h1>
<table>
<tr><th>Rank</th><th>Player Name</th><th>GP</th><th>GW</th><th>GL</th><th>Points</th></tr>
<tr ng-repeat="player in tourneyList.names | orderBy:['-gamePlayed','-gameWon','-totalPoints'] |filter:'New':true">
<td align=center>{{$index +1}}</td>
<td>{{player.text}}</td>
<td align=center>{{player.gamePlayed}}</td>
<td align=center>{{player.gameWon}}</td>
<td align=center>{{player.gameLost}}</td>
<td align=center>{{player.totalPoints}}</td>
</tr>
</table>
</div>
<br>
<small>contact [email protected] for any recording error(s).</small>
</body>
</html>