Files
web2.0-backend/infoscreen/static/html/hsl.html
T
2016-09-15 20:56:49 +03:00

37 lines
588 B
HTML

<div ng-app="myApp" ng-controller="timetableCtrl">
<table class="table">
<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: 15">
<td>
{{x.time}}
</td>
<td>
{{x.bus}}
</td>
<td>
{{x.stop}}
</td>
<td>
{{x.laststop}}
</td>
</tr>
</tbody>
</table>
</div>