{% set container_id = 'records-table-container-audit' if audit_mode else 'records-table-container' %}
{{ _("0 selected") }} |
{% for record in records %}
{{ record.display_name }}
{% if record.marked_false_positive %} {{ _("FP") }} {% elif record.deleted_at and not record.file_exists %} {{ _("DEL") }} {% elif record.alerted %} {{ _("ALERT") }} {% else %} {{ _("ACTIVE") }} {% endif %} | {{ record.detected_at }} | {{ _("Comm:") }} {{ record.communication_count }} | {{ record.features|join(', ') if record.features else _("None") }} {% if record.quarantine_id %}| {{ _("Q:") }}{{ record.quarantine_id[:12] }}{% endif %} {% if record.deleted_at %}| {{ _("Del") }}{% endif %}
{% else %}

{{ _("No detection records found") }}

{% endfor %}
{% if total_pages > 1 %}
{{ _("Page") }} {{ page }} / {{ total_pages }} ({{ total }} {{ _("total") }})
{% endif %}