<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <meta name="author" content="Eduards Jākobsons" />
    <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
      href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css"
      rel="stylesheet"
    />
    <link rel="stylesheet" href="/styles/global.css" />
    <title><%=title %></title>
  </head>

  <body>
    <%- include("../partials/navbar.ejs") %>
    <div class="container-fluid mt-3">
      <h2>Exported Products</h2>

      <table class="table table-striped">
        <thead>
          <tr>
            <th>Name</th>
            <th>Exporter</th>
            <th>Quantity</th>
            <th>Object</th>
            <th>Export Date</th>
          </tr>
        </thead>
        <tbody>
          <!-- eksopteto produktu izvade izmantojot for each ciklu -->
          <% exported_products.forEach(element=> { %>
          <tr>
            <th><%=element.name%></th>
            <th><%=element.exporter%></th>
            <th><%=element.quantity%></th>
            <th><%=element.object%></th>
            <th><%=element.removedate%></th>
          </tr>
          <%}) %>
        </tbody>
      </table>
    </div>
    <%- include("../partials/pagination.ejs") %>
    <%-include("../partials/footer.ejs") %>
  </body>
</html>
