<%- include('../partials/header', { title }) %>

<div class="admin-page-head">
  <div>
    <h2>Event Registrations</h2>
    <p style="color: var(--ink-300);"><%= registrations.length %> total</p>
  </div>
  <a href="/admin/events" class="btn btn-outline btn-sm">← Back to Events</a>
</div>

<div class="table-wrap">
  <table class="data-table">
    <thead><tr><th>Name</th><th>Email</th><th>Company</th><th>Event</th><th>Registered</th></tr></thead>
    <tbody>
      <% if (!registrations.length) { %>
        <tr><td class="empty-row" colspan="5">No registrations yet.</td></tr>
      <% } %>
      <% registrations.forEach(function(r) { %>
        <tr>
          <td class="cell-title"><%= r.full_name %></td>
          <td class="cell-muted"><%= r.email %></td>
          <td class="cell-muted"><%= r.company || '—' %></td>
          <td class="cell-muted"><a href="/events/<%= r.event_slug %>" target="_blank"><%= r.event_title %></a></td>
          <td class="cell-muted"><%= new Date(r.created_at).toLocaleString('en-US') %></td>
        </tr>
      <% }); %>
    </tbody>
  </table>
</div>

<%- include('../partials/footer') %>
