2016-01-18 06:41:11 +00:00
|
|
|
<div class="page-header">
|
|
|
|
<h1>Scoreboard</h1>
|
2016-01-02 06:01:34 +00:00
|
|
|
</div>
|
2016-01-18 06:41:11 +00:00
|
|
|
|
|
|
|
<table class="table table-striped">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Rank</th>
|
|
|
|
<th>Team Name</th>
|
|
|
|
<th>School</th>
|
|
|
|
<th>Points</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr ng-repeat="team in scoreboard">
|
2016-01-27 02:30:30 +00:00
|
|
|
<td>{{ team['rank'] }}</td>
|
2016-01-18 06:41:11 +00:00
|
|
|
<td><a ng-href="/team/{{ team['teamname'] }}">{{ team['teamname'] }}</a></td>
|
|
|
|
<td>{{ team['school'] }}</td>
|
|
|
|
<td>{{ team['points'] }}</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|