<%- include('../partials/header', { activeMenu: 'audit' }) %>
Clear
<% if (!logs || logs.length === 0) { %>

No audit logs found matching your filters.

<% } else { %>

Showing <%= logs.length %> of <%= total %> logs (page <%= page %> of <%= totalPages %>)

<% for (const log of logs) { %> <% } %>
Time Action Table Row ID Details
<%= new Date(log.created_at).toLocaleString('en-IN', { dateStyle: 'short', timeStyle: 'short' }) %> <%= log.action %> <%= log.table_name %> <%= log.row_id ? log.row_id.slice(0,8) + '...' : '—' %> View
<% if (totalPages > 1) { %> <% } %> <% } %>
<%- include('../partials/footer') %>