<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <meta name="author" content="Edijs Kalns" />
  <meta name="group" content="310" />
  <meta name="group_name" content="VEMEM" />
  <meta name="date_created" content="21.09.2023" />
  <meta name="date_modify" content="21.09.2023" />
  <link rel="stylesheet" href="/styles/global.css">

  <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css" rel="stylesheet" />

  <title>
    <%=title %>
  </title>
</head>

<body>
  <%- include("../partials/navbar.ejs") %>
    <div class="container-fluid mt-3">
      <h2>Imported Products</h2>

      <table class="table table-striped">
        <thead>
          <tr>
            <th>Name</th>
            <th>Importer</th>
            <th>Quantityn</th>
            <th>Delivery Date</th>
          </tr>
        </thead>
        <tbody>
          <!-- importeto produktu izvade izmantojot for each ciklu -->
          <% imported_products.forEach(element=> { %>
            <tr>
              <th>
                <%=element.name%>
              </th>
              <th>
                <%=element.importer%>
              </th>
              <th>
                <%=element.quantity%>
              </th>
              <th>
                <%=element.deliverydate%>
              </th>
            </tr>
            <%}) %>
        </tbody>
      </table>
    </div>
    <%- include("../partials/pagination.ejs") %>
      <%- include("../partials/footer.ejs") %>
</body>

</html>