departure board: restyled followee checkin notice, add it for hafas too
This commit is contained in:
parent
f1d3d3ed93
commit
6686a16bbf
2 changed files with 9 additions and 0 deletions
|
@ -36,6 +36,10 @@
|
||||||
</a>
|
</a>
|
||||||
<span class="dep-dest">
|
<span class="dep-dest">
|
||||||
%= $result->destination
|
%= $result->destination
|
||||||
|
% for my $checkin (@{$checkin_by_train->{$result->id} // []}) {
|
||||||
|
<span class="followee-checkin">
|
||||||
|
<i class="material-icons tiny">people</i> <%= $checkin->{followee_name} %> → <%= $checkin->{arr_name} // '???' %>
|
||||||
|
</span>
|
||||||
% }
|
% }
|
||||||
</span>
|
</span>
|
||||||
</li>
|
</li>
|
||||||
|
|
|
@ -41,6 +41,11 @@
|
||||||
</a>
|
</a>
|
||||||
<span class="dep-dest">
|
<span class="dep-dest">
|
||||||
%= $result->destination
|
%= $result->destination
|
||||||
|
% for my $checkin (@{$checkin_by_train->{$result->train_id} // []}) {
|
||||||
|
<span class="followee-checkin">
|
||||||
|
<i class="material-icons tiny">people</i> <%= $checkin->{followee_name} %> → <%= $checkin->{arr_name} // '???' %>
|
||||||
|
</span>
|
||||||
|
% }
|
||||||
</span>
|
</span>
|
||||||
</li>
|
</li>
|
||||||
% }
|
% }
|
||||||
|
|
Loading…
Reference in a new issue