<!DOCTYPE html>
<html lang="pt-br">
<head>
  <title><%= titulo %> — CobraGestão</title>
  <%- include('partials/head') %>
</head>
<body>
  <div class="app-shell">
    <%- include('partials/sidebar', { active: 'dashboard' }) %>

    <main class="main">
      <div class="page-header">
        <div>
          <h1><%= titulo %></h1>
          <p class="text-muted" style="margin-top:2px;">
            <%= itens.length %> parcela(s) — total <%= formatMoeda(somaTotal) %>
          </p>
        </div>
        <a href="<%= basePath %>/dashboard" class="btn btn-outline">← Voltar ao dashboard</a>
      </div>

      <div class="table-wrap">
        <table>
          <thead>
            <tr>
              <th>Cliente</th>
              <th>Captador</th>
              <th>Parcela</th>
              <th>Vencimento</th>
              <th class="text-right">Valor a cobrar</th>
              <th class="text-right">Dívida total</th>
              <th></th>
            </tr>
          </thead>
          <tbody>
            <% if (itens.length === 0) { %>
              <tr><td colspan="7" class="empty-state">Nenhuma parcela encontrada para este filtro.</td></tr>
            <% } %>
            <% itens.forEach(item => { %>
              <tr>
                <td><a href="<%= basePath %>/clientes/<%= item.cliente_id %>"><strong><%= item.cliente_nome %></strong></a></td>
                <td class="text-muted"><%= item.captador_nome || '—' %></td>
                <td>
                  Nº <%= item.numero_parcela %>
                  <% if (item.status === 'parcial') { %><span class="badge badge-parcial">parcial</span><% } %>
                </td>
                <td><%= formatData(item.data_vencimento) %></td>
                <td class="text-right mono"><strong><%= formatMoeda(item.valor_restante) %></strong></td>
                <td class="text-right mono text-muted"><%= formatMoeda(item.valor_total_devido) %></td>
                <td class="text-right">
                  <a class="btn btn-sm btn-whatsapp" target="_blank"
                     href="<%= linkWhatsapp(item.cliente_whatsapp, 'Olá ' + item.cliente_nome + ', tudo bem? Passando para lembrar sobre a parcela nº ' + item.numero_parcela + ' no valor de ' + formatMoeda(item.valor_restante) + ', com vencimento em ' + formatData(item.data_vencimento) + '.') %>">
                    WhatsApp
                  </a>
                  <a class="btn btn-sm btn-outline" href="<%= basePath %>/emprestimos/<%= item.emprestimo_id %>">Ver</a>
                </td>
              </tr>
            <% }) %>
          </tbody>
        </table>
      </div>
    </main>
  </div>
</body>
</html>
