inventory.ejs 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <link rel="stylesheet" href="/inventoryPage/inventory.css">
  5. <link rel="stylesheet" href="/shared/shared.css">
  6. </head>
  7. <body>
  8. <% include ../shared/header %>
  9. <% include ../shared/banner %>
  10. <div id="inventoryStrand">
  11. <h1><%= merchant.name %> inventory</h1>
  12. <a href="/recipes">View Recipes</a>
  13. <button onclick="addIngredientObj.display()">Add Ingredient</button>
  14. <input id="filter" onkeyup="inventoryObj.filter()" type="text" placeholder="Start typing to filter">
  15. <table>
  16. <thead>
  17. <tr>
  18. <th onclick="inventoryObj.sortIngredients('name')">Item</th>
  19. <th onclick="inventoryObj.sortIngredients('category')">Category</th>
  20. <th onclick="inventoryObj.sortIngredients('quantity')">Quantity</th>
  21. <th onclick="inventoryObj.sortIngredients('unit')">Unit</th>
  22. <th></th>
  23. </tr>
  24. <tbody></tbody>
  25. </thead>
  26. </table>
  27. </div>
  28. <div id="recipeStrand"></div>
  29. <div id="addIngredientStrand" class="add-ingredient">
  30. <button onclick="inventoryObj.display()">Back to Inventory</button>
  31. <form onsubmit="addIngredientObj.submitAdd()">
  32. <h2>Select Ingredient</h2>
  33. <select id="addName"></select>
  34. <input id="addQuantity" type="number" step="0.01">
  35. <input type="submit" value="Add Ingredient">
  36. </form>
  37. <div>
  38. <h2>Create New Ingredient</h2>
  39. </div>
  40. </div>
  41. <script>let merchant = <%- JSON.stringify(merchant) %>;</script>
  42. <script src="https://unpkg.com/axios/dist/axios.min.js"></script>
  43. <script src="../shared/validation.js"></script>
  44. <script src="/inventoryPage/inventory.js"></script>
  45. <script src="/inventoryPage/recipe.js"></script>
  46. <script src="/inventoryPage/addIngredient.js"></script>
  47. <script src="/inventoryPage/controller.js"></script>
  48. </body>
  49. </html>