<%- include('partials/head'); %>
<%- include('partials/header'); %>

<%= product.productName %>


Nr.:<%= product.id %>


Verkäufer: <%= product.sellerName%>


Preis: <%= product.price %> € / Stück

Kategorie: <%= category.name %>




<% } else { %> color: red; font-weight:bold;"> Aktuell nicht lieferbar! <% } %>

Beschreibung

<%= product.productDescription %>

<% if(loggedIn){ %>

Rezensionen

<% } %>
<% if(reviews.length > 0){ %> <% for(let i = 0; i < reviews.length; i++){ %>

<%= reviews[i].name %>

Bewertung: <%= reviews[i].rating %>

<%= reviews[i].title %>

<%= reviews[i].content %>

<% } %> <% }else{ %>
Leider hat dieses Produkt noch keine Bewertung. :(
<% } %>
<%- include('partials/footer'); %>