ingredientDetails.ejs 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <div id="ingredientDetails">
  2. <div class="sidebarIconButtons mobileHide">
  3. <button class="iconButton tooltipContainer" onclick="controller.closeSidebar()">
  4. <svg width="30" height="30" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  5. <line x1="5" y1="12" x2="19" y2="12"></line>
  6. <polyline points="12 5 19 12 12 19"></polyline>
  7. </svg>
  8. <span class="tooltip">CLOSE</span>
  9. </button>
  10. <button id="editIngBtn" class="iconButton tooltipContainer">
  11. <svg width="30" height="30" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  12. <path d="M12 20h9"></path>
  13. <path d="M16.5 3.5a2.121 2.121 0 0 1 3 3L7 19l-4 1 1-4L16.5 3.5z"></path>
  14. </svg>
  15. <span class="tooltip">EDIT</span>
  16. </button>
  17. <button id="removeIngBtn" class="iconButton tooltipContainer">
  18. <svg width="30" height="30" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
  19. <polyline points="3 6 5 6 21 6"></polyline>
  20. <path d="M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"></path>
  21. </svg>
  22. <span class="tooltip">DELETE</span>
  23. </button>
  24. </div>
  25. <p id="ingredientDetailsCategory"></p>
  26. <h1 id="ingredientDetailsName"></h1>
  27. <div class="lineBorder"></div>
  28. <label>CURRENT STOCK
  29. <p id="ingredientStock"></p>
  30. </label>
  31. <div class="lineBorder"></div>
  32. <label>UNIT COST
  33. <p id="unitCostDisplay"></p>
  34. </label>
  35. <div class="lineBorder"></div>
  36. <label id="recipeListLabel">SUB-INGREDIENTS:</label>
  37. <div id="subIngredientList"></div>
  38. <template id="ingredientRecipe">
  39. <button class="choosable offColor">
  40. <p></p>
  41. <p></p>
  42. </button>
  43. </template>
  44. </div>