<%= pageTitle %>

<% if (user) { %>

Ciao, <%= user.name %>!

<% } %>

Prodotti Disponibili

<% if (products && products.length > 0) { %>
<% products.forEach(function(product) { %>

<%= product.name %>

<%= 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.

<% } %>