Versie module 1 van 26-7

This commit is contained in:
2026-07-26 22:18:52 +02:00
commit 26a820b41a
39 changed files with 3663 additions and 0 deletions
+71
View File
@@ -0,0 +1,71 @@
<div class="page-header mb-4">
<h1>
📦 Producten
</h1>
</div>
<div class="card">
<div class="card-body">
<% if(products.length === 0) { %>
<p>
Nog geen producten.
</p>
<% } %>
<div class="list-group">
<% products.forEach(product => { %>
<div class="list-group-item">
<strong>
<%= product.name %>
</strong>
<br>
<span class="text-secondary">
<%= product.category_icon || "" %>
<%= product.category_name || "Geen categorie" %>
</span>
</div>
<% }) %>
</div>
</div>
</div>