<section>
  <div class="admin-header">
    <h1>Countries</h1>
    <a class="button button-primary" href="/admin/countries/new">+ New Country Page</a>
  </div>
  <p class="hint">Each row below is a live page on the site (zucegroup.com/kenya, /rwanda, etc). Edit one to change its hero, photos and copy.</p>

  <% if (!countries.length) { %>
    <div class="dash-empty-state">
      <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><line x1="2" y1="12" x2="22" y2="12"></line><path d="M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"></path></svg>
      <p>No country pages yet.</p>
      <a href="/admin/countries/new">Add your first country page &rarr;</a>
    </div>
  <% } else { %>
    <table class="admin-table">
      <thead>
        <tr><th>Country</th><th>Slug</th><th>Hub type</th><th>Order</th><th>Status</th><th></th></tr>
      </thead>
      <tbody>
        <% countries.forEach(function(country) { %>
          <tr>
            <td><%= country.name %></td>
            <td>/<%= country.slug %></td>
            <td><%= country.hubType || '—' %></td>
            <td><%= country.sortOrder %></td>
            <td><span class="tag"><%= country.status %></span></td>
            <td>
              <a href="/<%= country.slug %>" target="_blank" rel="noopener">View</a>
              <a href="/admin/countries/<%= country.id %>/edit">Edit</a>
              <form action="/admin/countries/<%= country.id %>?_method=DELETE" method="POST" style="display:inline"
                    onsubmit="return confirm('Delete this country page? The URL will stop working.')">
                <button type="submit">Delete</button>
              </form>
            </td>
          </tr>
        <% }) %>
      </tbody>
    </table>
  <% } %>
</section>
