silvrgit/app/template/trains.ejs
martind2000 3e1087fd70 init
2016-03-08 21:52:21 +00:00

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>