-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathauction-list.ejs
More file actions
41 lines (36 loc) · 1.11 KB
/
auction-list.ejs
File metadata and controls
41 lines (36 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<%- include ('partials/head') %> <%- include ('partials/navbar') %>
<div class="container landing-page">
<h3>Order Details</h3>
<br />
<div class="table-responsive">
<table
class="table table-striped table-bordered table-sm"
cellspacing="0"
width="100%"
>
<thead>
<tr>
<th>Vessel</th>
<th>Item</th>
<th>Total Price</th>
<th>Status</th>
<th>Mode</th>
<th>Delivery date</th>
</tr>
</thead>
<tbody>
<% for (let i = 0; i < pendingNotes.length; i += 1) { %>
<td><%= pendingNotes[i].vessel_name %></td>
<td><%= pendingNotes[i].species %> <%= pendingNotes[i].size %> <%= pendingNotes[i].qual %> </td>
<td><%= pendingNotes[i].price_total %></td>
<td><%= pendingNotes[i].status %></td>
<td><%= pendingNotes[i].mode_delivery %></td>
<td><%= pendingNotes[i].delivery_date.toLocaleDateString() %></td>
</tr>
<% } %>
</tbody>
</table>
<a href="/invoice" class="btn btn-secondary" role="button">Back</a>
</div>
</div>
<%- include ('partials/footer') %>