<%
const maxSlots = 21; // 3 Reihen × 7 Plätze
for (let i = 0; i < maxSlots; i++) {
const p = waitingPatients && waitingPatients[i];
%>
<% if (p) { %>
<%= p.firstname %> <%= p.lastname %>
<%= new Date(p.birthdate).toLocaleDateString("de-DE") %>
<% } else { %>
<% } %>
<% } %>