2024-02-02 16:44:34 -08:00

33 lines
808 B
Plaintext

<%- include('/partials/head') %>
<%- include ('partials/navbar') %>
<h1>Work Ticket Visits</h1>
<table class="table">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Work Ticket ID</th>
<th scope="col">Scheduled Date</th>
</tr>
</thead>
<tbody>
<% for (let i=0; i < workticketvisits.length; i++) { %>
<tr>
<th scope="row">
<%= i + 1 %>
</th>
<td>
<%= workticketvisits[i].WorkTicketID %>
</td>
<td>
<%= workticketvisits[i].ScheduledDate %>
</td>
</tr>
<% } %>
</tbody>
</table>
<%- include ('partials/footer') %>