easyctf-2017/web/pages/scoreboard.html

22 lines
453 B
HTML
Raw Normal View History

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">
<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>