<%- include('partials/header', { title, flash, session, csrf }) %>
<section class="card">
  <div class="table-wrap"><table><thead><tr><th>التاريخ</th><th>المستوى</th><th>الحدث</th><th>الرسالة</th><th>السياق</th></tr></thead><tbody>
  <% rows.forEach(row => { %><tr><td><%= row.created_at %></td><td><span class="badge badge-<%= row.level %>"><%= row.level %></span></td><td><%= row.event_type %></td><td><%= row.message %></td><td><pre class="context"><%= row.context || '' %></pre></td></tr><% }) %>
  <% if (!rows.length) { %><tr><td colspan="5">لا توجد سجلات.</td></tr><% } %>
  </tbody></table></div>
</section>
<%- include('partials/footer') %>
