mirror of
https://gitlab.silvrtree.co.uk/martind2000/old-silvrgit.git
synced 2025-01-11 07:05:09 +00:00
18 lines
437 B
Plaintext
18 lines
437 B
Plaintext
<div><%=locationName%> TO <%=filterLocationName%></div>
|
|
<table class="mui-table mui-table-bordered">
|
|
<tr><th>Destination</th>
|
|
<th>Time</th>
|
|
<th>Status</th>
|
|
<th>Platform</th></tr>
|
|
|
|
<% trainServices.forEach(function (item) { %>
|
|
<tr>
|
|
<td><%=item.destination[0].locationName%></td>
|
|
<td><%=item.sta%></td>
|
|
<td><%=item.eta%></td>
|
|
<td><%=item.platform%></td>
|
|
</tr>
|
|
<% }) %>
|
|
|
|
</table>
|