{# Audit table body partial — swapped via HTMX for pagination/filtering. Variables: entries (list[AuditIndex]): Audit entries for current page. verification_status (dict[str, bool|None]): entry.id -> verified status. page (int): Current page number. has_next (bool): Whether there is a next page. action_filter (str): Current action filter value (may be empty). #} {% if entries %} {% for entry in entries %} {% include "partials/_audit_row.html" %} {% endfor %} {% else %} No audit entries found. {% endif %} {# Pagination row #}
{% if page > 1 %} {% endif %} Page {{ page }} {% if has_next %} {% endif %}