<div class="page-header d-print-none">
  <div class="row align-items-center">
    <div class="col"><h2 class="page-title"><%= title %></h2></div>
    <div class="col-auto ms-auto"><a href="/admin/banners/new" class="btn btn-primary">Add Banner</a></div>
  </div>
</div>
<div class="card">
  <%- include('../../partials/adminPaginationTop') %>
  <div class="table-responsive">
    <table class="table table-vcenter card-table">
      <thead>
        <tr><th>Image</th><th>Title</th><th>Type</th><th>Order</th><th>Created</th><th>Status</th><th></th></tr>
      </thead>
      <tbody>
        <% banners.forEach(function(b) { %>
        <tr>
          <td><% if (b.imageUrl) { %><img src="<%= b.imageUrl %>" style="height:40px;border-radius:4px;" alt=""><% } else { %>—<% } %></td>
          <td><%= b.title || '—' %></td>
          <td><span class="badge bg-azure"><%= b.bannerType %></span></td>
          <td><%= b.sortOrder %></td>
          <td><%- include('../../partials/adminDateTime', { value: b.createdAt }) %></td>
          <td><span class="badge bg-<%= b.isActive ? 'success' : 'secondary' %>"><%= b.isActive ? 'Active' : 'Inactive' %></span></td>
          <td>
            <div class="btn-list flex-nowrap">
              <a href="/admin/banners/<%= b.id %>/edit" class="btn btn-sm btn-action-icon" title="Edit"><i class="ti ti-pencil"></i></a>
              <form action="/admin/banners/<%= b.id %>/delete" method="post" class="d-inline delete-form"
                data-delete-title="Delete banner?"
                data-delete-message="This will permanently remove banner &quot;<%= b.title || b.bannerType %>&quot;."
                data-delete-consequences="Banner removed from mobile app home/promo slots|Uploaded image deleted|Action recorded in Audit Logs with full snapshot">
                <button type="submit" class="btn btn-sm btn-action-icon btn-outline-danger" title="Delete"><i class="ti ti-trash"></i></button>
              </form>
            </div>
          </td>
        </tr>
        <% }); %>
      </tbody>
    </table>
  </div>
  <%- include('../../partials/adminPaginationBottom') %>
</div>
