Files
vapor-po/Resources/Views/purchaseOrders/table.leaf

19 lines
395 B
Plaintext

<table id="po-table">
<tr>
<th>PO</th>
<th>Work Order</th>
<th>Customer</th>
<th>Vendor</th>
<th>Materials</th>
<th>Created For</th>
<th>Created By</th>
<th>Truck Stock</th>
<th>#extend("btn/toggle-form")</th>
</tr>
<tbody id="po-table-body">
#for(po in purchaseOrders):
#extend("purchaseOrders/table-row", po)
#endfor
</tbody>
</table>