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>
|