<div class="page-header d-print-none">
  <div class="row align-items-center">
    <div class="col">
      <h2 class="page-title"><%= title %></h2>
      <div class="text-secondary"><%= brand.name %> — shop branches</div>
    </div>
    <div class="col-auto ms-auto">
      <a href="/admin/companies/<%= brand._id %>/branches/new" class="btn btn-primary">Add Branch</a>
      <a href="/admin/companies" class="btn btn-link">Back to Companies</a>
    </div>
  </div>
</div>
<div class="card">
  <%- include('../../partials/adminPaginationTop') %>
  <div class="table-responsive">
    <table class="table table-vcenter card-table">
      <thead>
        <tr><th>Branch</th><th>Code</th><th>City</th><th>Slug (landing)</th><th>Created</th><th>Status</th><th class="w-1"></th></tr>
      </thead>
      <tbody>
        <% if (branches.length === 0) { %>
        <tr><td colspan="7" class="text-center text-secondary">No branches yet. Add branches like Lulu BR1, BR2…</td></tr>
        <% } %>
        <% branches.forEach(function(branch) { %>
        <tr>
          <td><%= branch.name %></td>
          <td><%= branch.branchCode || '—' %></td>
          <td><%= branch.city || '—' %></td>
          <td><code>/api/v1/branches/<%= branch.slug %></code></td>
          <td><%- include('../../partials/adminDateTime', { value: branch.createdAt }) %></td>
          <td><span class="badge bg-<%= branch.isActive ? 'success' : 'secondary' %>"><%= branch.isActive ? 'Active' : 'Inactive' %></span></td>
          <td>
            <a href="/admin/companies/<%= brand._id %>/branches/<%= branch._id %>/edit" class="btn btn-sm btn-action-icon btn-outline-primary" title="Edit"><i class="ti ti-pencil"></i></a>
            <form action="/admin/companies/<%= brand._id %>/branches/<%= branch._id %>/delete" method="post" class="d-inline delete-form"
              data-delete-title="Delete branch?"
              data-delete-message="This will permanently remove branch &quot;<%= branch.name %>&quot; (<%= branch.branchCode || branch.city %>)."
              data-delete-consequences="Branch landing page /api/v1/branches/<%= branch.slug %> stops working|Deals scoped to this branch may be affected|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>
          </td>
        </tr>
        <% }); %>
      </tbody>
    </table>
  </div>
  <%- include('../../partials/adminPaginationBottom') %>
</div>
