| 12345678910111213141516171819202122232425262728293031 |
- <!DOCTYPE html>
- <html>
- <head>
- <link rel="stylesheet" href="/inventory/inventory.css">
- <link rel="stylesheet" href="/shared/shared.css">
- </head>
- <body>
- <% include ../shared/header %>
- <div class="container">
- <h1><%= merchant.name %> inventory</h1>
- <input id="filter" onkeyup="filter()" type="text" placeholder="Start typing to filter">
- <table>
- <thead>
- <tr>
- <th onclick="sortIngredients('name')">Item</th>
- <th onclick="sortIngredients('category')">Category</th>
- <th onclick="sortIngredients('quantity')">Quantity</th>
- <th onclick="sortIngredients('unit')">Unit</th>
- </tr>
- <tbody></tbody>
- </thead>
- </table>
- </div>
- <script>let merchant = <%- JSON.stringify(merchant) %>;</script>
- <script src="/inventory/inventory.js"></script>
- </body>
- </html>
|