<!DOCTYPE html>
<html lang="pt-br">
<head>
  <meta charset="UTF-8">
  <title>Entregadores</title>
  <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body class="container mt-4">

  <h2>Lista de Entregadores</h2>
  <a href="/entregadores/new" class="btn btn-primary mb-3">Novo Entregador</a>

  <table class="table table-bordered">
    <thead>
      <tr>
        <th>Nome</th>
        <th>Telefone</th>
        <th>Veículo</th>
        <th>Status</th>
        <th>Ações</th>
      </tr>
    </thead>
    <tbody>
      <% entregadores.forEach(e => { %>
        <tr>
          <td><%= e.nome %></td>
          <td><%= e.telefone %></td>
          <td><%= e.veiculo %> - <%= e.placa %></td>
          <td>
            <span class="badge <%= e.status === 'ativo' ? 'bg-success' : 'bg-danger' %>">
              <%= e.status %>
            </span>
          </td>
          <td>
            <a href="/entregadores/<%= e._id %>/edit" class="btn btn-sm btn-warning">Editar</a>
            <form action="/entregadores/<%= e._id %>/delete" method="post" class="d-inline">
              <button type="submit" class="btn btn-sm btn-danger">Excluir</button>
            </form>
          </td>
        </tr>
      <% }) %>
    </tbody>
  </table>

</body>
</html>
