data.ejs 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>The Subline</title>
  6. <link rel="icon" type="img/png" href="/shared/images/logo.png">
  7. <link rel="stylesheet" href="/shared/shared.css">
  8. <link rel="stylesheet" href="/dataPage/data.css">
  9. </head>
  10. <body>
  11. <% include ../shared/header %>
  12. <% include ../shared/banner %>
  13. <h1 id="title"><%=data.merchant.name%></h1>
  14. <strand-selector></strand-selector>
  15. <div id="homeStrand" class="strand">
  16. <h2 id="month"></h2>
  17. <div class="buttonBox">
  18. <a class="button" href="/inventory">Display Inventory</a>
  19. </div>
  20. <div class="tables">
  21. <!-- Ingredients used -->
  22. <div id="ingredientsData" class="dataTable">
  23. <h3>Ingredients</h3>
  24. <table>
  25. <thead>
  26. <tr>
  27. <th>Ingredient</th>
  28. <th>Used</th>
  29. <th>Remaining</th>
  30. </tr>
  31. </thead>
  32. <tbody></tbody>
  33. </table>
  34. </div>
  35. <!-- Recipes used -->
  36. <div id="recipesData" class="dataTable">
  37. <h3>Recipes</h3>
  38. <div>
  39. <p>Total Revenue: <span id="revenueTotal"></span></p>
  40. <p>Total sold: <span id="soldTotal"></span></p>
  41. </div>
  42. <table>
  43. <thead>
  44. <tr>
  45. <th>Recipe</th>
  46. <th># sold</th>
  47. <th>Revenue</th>
  48. </tr>
  49. </thead>
  50. <tbody></tbody>
  51. </table>
  52. </div>
  53. <!-- Purchases -->
  54. <div id="purchasesData" class="dataTable">
  55. <h3>Purchases</h3>
  56. <table>
  57. <thead>
  58. <tr>
  59. <th>Ingredient</th>
  60. <th>Amount</th>
  61. </tr>
  62. </thead>
  63. <tbody></tbody>
  64. </table>
  65. </div>
  66. </div>
  67. </div>
  68. <script>let data = <%- JSON.stringify(data); %></script>
  69. <script src="/dataPage/home.js"></script>
  70. <script src="/shared/controller.js"></script>
  71. </body>
  72. </html>