<!DOCTYPE html>
<html>

<head>
  <title> Dashboard Brands - Doors & Specialities </title>
  <meta charset="UTF-8">
  <meta name="keywords" content="HTML, CSS, JavaScript">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <link rel="shortcut icon" href="/demo-custom/doors-specialties/images/favicon.png" type="image/x-icon">
  <%- include('./includes/css-links') %>
</head>

<body>
  <main>
    <div class="dashboard-wrapper">
      <%- include('./includes/sidebar') %>
      <div class="dashboard-content">        
        <div class="dashboard-card">
          <div class="card-head">
            <h5 class="theme-h5">Brands</h5>
            <a class="add-new-btn" href="/demo-custom/doors-specialties/admin/new-brand">Add New
              <i class="fa-solid fa-plus"></i>
            </a>
          </div>
          <div class="card-inner">
            
            <table class="table dashboard-table product-table">
              <thead>
                <tr>
                  <th>Id</th>
                  <th>Name</th>
                  <th>Image</th>
                  <th>Actions</th>
                </tr>
              </thead>
              <tbody>
                <% brands.forEach(item => { %>
                  <tr>
                    <td><%- item.id %></td>
                    <td><%- item.name %></td>
                    <td><%- item.image ? `<img style="width: 150px;" class="img-fluid" src="/demo-custom/doors-specialties${item.mediaPath}/${item.mediaName}" />` : '' %></td>
                    <td>
                    <!-- <a class="modify-item" href="/demo-custom/doors-specialties/admin/edit-brand/<%= item.id %>" title="Edit Color"><i class="fa-solid fa-pen-to-square"></i></a> -->
                    <form class="dangerous-form" data-warning="Do You want to Delete Brand <%- item.name %>" action="/demo-custom/doors-specialties/api/brand/delete" method="post">
                      <input type="hidden" name="id" value="<%= item.id %>">
                      <button class="delete-item" title="Delete Color"><i class="fa-solid fa-trash"></i></button>
                    </form>
                    </td>
                  </tr>
                <% }) %>
              </tbody>
            </table>
          </div>
        </div>
      </div>
    </div>
  </main>
  <%- include('./includes/footer') %>
  <%- include('./includes/media-library') %>
  <%- include('./includes/script-links') %>
</body>

</html>