orderCalculator.ejs 1010 B

1234567891011121314151617181920212223242526272829
  1. <div id="orderCalculator">
  2. <div class="sidebarIconButtons mobileHide">
  3. <button class="iconButton" 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. </button>
  9. </div>
  10. <h1>ORDER CALCULATOR</h1>
  11. <div class="scroller">
  12. <table id="calculatorItems" class="calculatorItems" cellspacing="0" cellpadding="5px">
  13. <thead>
  14. <th>INGREDIENT</th>
  15. <th>USAGE / DAY (PREDICTED)</th>
  16. </thead>
  17. <tbody id="calculatorItemsBody"></tbody>
  18. </table>
  19. </div>
  20. <template id="calculatorItem">
  21. <tr class="calculatorItem">
  22. <td></td>
  23. <td class="calcUsage"></td>
  24. </tr>
  25. </template>
  26. </div>