<%- include('../partials/header') %><div class="card panel-card mb-4"><div class="card-body"><form class="row g-2" method="get"><div class="col-lg-5"><input class="form-control" name="search" placeholder="Search CAPA number, title or problem" value="<%= filters.search||'' %>"></div><div class="col-lg-2"><select class="form-select" name="status"><option value="">All statuses</option><% ['Open','In Progress','Under Verification','Pending Verification','Closed','On Hold'].forEach(x=>{ %><option <%= filters.status===x?'selected':'' %>><%= x %></option><% }) %></select></div><div class="col-lg-2"><select class="form-select" name="priority"><option value="">All priorities</option><% ['Critical','High','Medium','Low'].forEach(x=>{ %><option <%= filters.priority===x?'selected':'' %>><%= x %></option><% }) %></select></div><div class="col-lg-3 d-flex gap-2"><button class="btn btn-primary flex-fill">Filter</button><a class="btn btn-light" href="/capa">Reset</a></div></form></div></div><div class="card panel-card"><div class="card-header"><div><h5>CAPA Register</h5><small><%= capas.length %> records</small></div><a href="/capa/create" class="btn btn-primary btn-sm"><i class="bi bi-plus-lg"></i> New CAPA</a></div><div class="table-responsive"><table class="table align-middle mb-0"><thead><tr><th>CAPA No.</th><th>Title / Problem</th><th>Severity</th><th>Priority</th><th>Status</th><th>Workflow</th><th>Owner</th><th></th></tr></thead><tbody><% capas.forEach(c=>{ %><tr><td><a href="/capa/<%= c.id %>"><strong><%= c.capa_no %></strong></a><div class="text-muted small"><%= fmtDate(c.detected_date) %></div></td><td><strong><%= c.title %></strong><div class="text-muted small text-truncate" style="max-width:360px"><%= c.problem_statement %></div></td><td><span class="badge text-bg-light"><%= c.severity %></span></td><td><span class="badge text-bg-light"><%= c.priority %></span></td><td><span class="badge text-bg-light"><%= c.status %></span></td><td><small><%= c.workflow_stage %></small></td><td><%= c.owner_name||'Unassigned' %></td><td><a href="/capa/<%= c.id %>" class="btn btn-sm btn-outline-primary">View</a></td></tr><% }) %></tbody></table></div></div><%- include('../partials/footer') %>
