Files
web2.0-backend/infoscreen/static/html/hsl.html
T

38 lines
697 B
HTML

<link rel="stylesheet" href="/static/css/hsl.css">
<div ng-app="myApp" ng-controller="timetableCtrl">
<table class="table table-striped">
<thead>
<tr>
<th>
Aika
</th>
<th>
Bussin numero
</th>
<th>
Pys&#228;kki
</th>
<th>
P&#228;&#228;tepys&#228;kki
</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="x in arr | orderBy: ['date','time'] | limitTo: 10">
<td ng-class='{red : x.hurry, black: !x.hurry}'>
{{x.time}}
</td>
<td>
{{x.bus}}
</td>
<td>
{{x.stop}}
</td>
<td>
{{x.laststop}}
</td>
</tr>
</tbody>
</table>
</div>