<%- include('../partials/header') %><div class="approval-hero mb-4"><div><span class="eyebrow">CONTROLLED QUALITY DECISIONS</span><h3 class="mb-1">Approval Center</h3><p class="text-muted mb-0">Independent review gates for CAPA progression and closure.</p></div><div class="approval-hero-stat"><span>Pending for you</span><strong><%= pending.length %></strong></div></div><div class="card panel-card mb-4"><div class="card-header"><div><h5>Pending Approvals</h5><small>Self-approval is blocked.</small></div></div><div class="card-body"><% if(!pending.length){ %><div class="approval-empty"><i class="bi bi-check2-circle"></i><div><strong>No pending approvals</strong><span>Your quality decision queue is clear.</span></div></div><% } pending.forEach(a=>{ %><div class="approval-control"><i class="bi bi-patch-check"></i><div class="flex-grow-1"><strong><%= a.step_name %> · <%= a.capa_no %></strong><span><%= a.capa_title %> · Due <%= fmtDate(a.due_date) %></span></div><a class="btn btn-sm btn-primary" href="/approval/<%= a.id %>">Review</a></div><% }) %></div></div><div class="card panel-card"><div class="card-header"><h5>Recent Decisions</h5></div><div class="table-responsive"><table class="table"><thead><tr><th>CAPA</th><th>Gate</th><th>Status</th><th>Decision</th><th></th></tr></thead><tbody><% recent.forEach(a=>{ %><tr><td><%= a.capa_no %></td><td><%= a.step_name %></td><td><span class="badge text-bg-light"><%= a.status %></span></td><td><%= a.decision_at?fmtDateTime(a.decision_at):'—' %></td><td><a href="/approval/<%= a.id %>">View</a></td></tr><% }) %></tbody></table></div></div><%- include('../partials/footer') %>
