<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/coupons/new" class="btn btn-primary">Add Coupon</a></div>
  </div>
</div>
<div class="card">
  <%- include('../../partials/adminPaginationTop') %>
  <div class="table-responsive">
    <table class="table table-vcenter card-table">
      <thead>
        <tr><th>Title</th><th>Code</th><th>Discount</th><th>Expiry</th><th>Created</th><th>Status</th><th></th></tr>
      </thead>
      <tbody>
        <% coupons.forEach(function(c) { %>
        <tr>
          <td><%= c.title %></td>
          <td><code><%= c.couponCode %></code></td>
          <td><%= c.discountPercentage ? c.discountPercentage + '%' : '—' %></td>
          <td><%- include('../../partials/adminDate', { value: c.expiryDate }) %></td>
          <td><%- include('../../partials/adminDateTime', { value: c.createdAt }) %></td>
          <td><span class="badge bg-<%= c.isActive ? 'success' : 'secondary' %>"><%= c.isActive ? 'Active' : 'Inactive' %></span></td>
          <td>
            <div class="btn-list flex-nowrap">
              <a href="/admin/coupons/<%= c.id %>/edit" class="btn btn-sm btn-action-icon" title="Edit"><i class="ti ti-pencil"></i></a>
              <form action="/admin/coupons/<%= c.id %>/delete" method="post" class="d-inline delete-form"
                data-delete-title="Delete coupon?"
                data-delete-message="This will permanently remove coupon &quot;<%= c.title %>&quot; (<%= c.couponCode %>)."
                data-delete-consequences="Coupon code stops working in the app|Users can no longer redeem this offer|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>
