22 lines
714 B
HTML
22 lines
714 B
HTML
<ng-container *ngFor="let leg of legs; let index = index; let last = last">
|
|
<div class="leg-point-brief">
|
|
<time-group-legacy
|
|
[times]="getLatest(leg, 'departure')"
|
|
[baseline]="getBaseline(leg, 'departure')"
|
|
></time-group-legacy>
|
|
|
|
<station [station]="$any(leg.departure)"></station>
|
|
</div>
|
|
<div class="leg-point-brief">
|
|
<time-group-legacy
|
|
[times]="getLatest(leg, 'arrival')"
|
|
[baseline]="getBaseline(leg, 'arrival')"
|
|
></time-group-legacy>
|
|
|
|
<station [station]="$any(leg.arrival)"></station>
|
|
</div>
|
|
|
|
<transfer [leg]="leg" [viewType]="viewType" *ngIf="!last && leg.next">
|
|
</transfer>
|
|
</ng-container>
|