Add products and quantities pages

This commit is contained in:
2020-10-05 20:10:43 -05:00
parent b809edd49d
commit 82f37f4b25
3 changed files with 77 additions and 0 deletions

View File

@ -0,0 +1,19 @@
<!DOCTYPE HTML>
<html>
<body>
<table border=1>
<tr>
<th>UPC</th>
<td>Quantity</td>
<td>Location</td>
</tr>
{% for upc, quantity, location in data %}
<tr>
<th> {{ upc }} </th>
<td> {{ quantity }} </td>
<td> {{ location }} </td>
</tr>
{% endfor %}
</table>
</body>
</html>