39 lines
804 B
HTML
39 lines
804 B
HTML
<link rel="stylesheet" href="/static/css/hsl.css">
|
|
<link href="https://fonts.googleapis.com/css?family=Droid+Sans+Mono" rel="stylesheet">
|
|
<div ng-app="myApp" ng-controller="timetableCtrl">
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
Aika
|
|
</th>
|
|
<th>
|
|
Numero
|
|
</th>
|
|
<th>
|
|
Pysäkki
|
|
</th>
|
|
<th>
|
|
Päätepysä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 style="margin-left: 15px">
|
|
{{x.bus}}
|
|
</td>
|
|
<td>
|
|
{{x.stop}}
|
|
</td>
|
|
<td>
|
|
{{x.laststop}}
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|