<%= product.description %>
Prezzo: €<%= product.price.toFixed(2) %>
<% if (product.discount > 0) { %>Sconto: <%= product.discount %>%
Prezzo finale: €<%= (product.price * (1 - product.discount / 100)).toFixed(2) %>
<% } %> <% if (product.inStock) { %> <% } else { %>Non disponibile
<% } %>Totale prodotti: <%= products.length %>
<% } else { %>Nessun prodotto disponibile al momento.
<% } %>