<%- include("../partials/navbar.ejs") %>
<% if (products.length < 1) { %>

NO DATA

<% } else { %> <% products.forEach(element=> { %>
<%=element.name %>

type: <%=element.type %>
quantuty: <%=element.quantity %>
serial num: <%=element.serial_num %>

Author: <%=element.user %>

$<%=element.cost %>

Buy
<% }) %> <% } %> <%- include("../partials/pagination.ejs") %>
<%- include("../partials/footer.ejs") %>