<%- include('../partials/app-start') %>
<header class="topbar"><div><p class="kicker">Detailed report</p><h1>Break & lunch activity</h1><p class="muted">Every individual break and lunch session.</p></div></header>
<section class="panel filter-panel"><form class="filters" method="get"><label>From<input type="date" name="start" value="<%= start %>"></label><label>To<input type="date" name="end" value="<%= end %>"></label><button class="btn btn-secondary">Apply filters</button></form></section>
<section class="panel table-panel"><div class="table-wrap"><table><thead><tr><th>Date</th><th>Employee</th><th>Type</th><th>Start</th><th>End</th><th>Duration</th><th>Note</th></tr></thead><tbody><% rows.forEach(r=>{ %><tr><td><%= r.attendance_date %></td><td><strong><%= r.name %></strong><small class="block"><%= r.email %></small></td><td><span class="badge <%= r.type==='LUNCH'?'warn':'' %>"><%= r.type %></span></td><td><%= fmtTime(r.start_time) %></td><td><%= fmtTime(r.end_time) %></td><td><strong><%= fmtDuration(r.duration_seconds) %></strong></td><td><%= r.auto_ended ? 'Auto-ended at clock out' : '—' %></td></tr><% }) %></tbody></table></div></section>
<%- include('../partials/app-end') %>
