koerseadmin/partials/viewer-pouleoverview.html

20 lines
539 B
HTML

<div class="row">
<div class="col-xs-12">
<div class="page-header">
<h1>Tier {{currentTier}} <small>poule {{currentPoule}}</small></h1>
</div>
</div>
</div>
<div class="row">
<!-- every team gets a column -->
<div class="col-xs-2" ng-repeat="team in teamsInPoule">
<!-- and that column is filled with rows: each row is a laptime -->
<div class="row" ng-repeat="race in team.races">
race: {{race.idrace}}
</div>
</div>
</div>
<div ng-repeat="team in teamsInPoule">
naam: {{team.teamname}}
</div>