{# Partial for rendering all three stats cards with AJAX-aware pagination #}

Recent Access-Accept

{% for entry in accept_entries %} {% endfor %}
MAC Address Description Vendor VLAN Time
{{ entry.mac_address }} {{ entry.description or '' }} {{ entry.vendor or '...' }} {{ entry.vlan_id or '?' }} {{ entry.ago }}
{% if pagination_accept.pages|length > 1 %} {% endif %}

Recent Access-Reject

{% for entry in reject_entries %} {% endfor %}
MAC Address Description Vendor Time
{{ entry.mac_address }} {{ entry.description or '' }} {{ entry.vendor or '...' }} {{ entry.ago }}
{% if pagination_reject.pages|length > 1 %} {% endif %}

Recent Access-Fallback

{% for entry in fallback_entries %} {% endfor %}
MAC Address Description Vendor Time Actions
{{ entry.mac_address }} {% if not entry.already_exists %} {% else %} {{ entry.description or '' }} {% endif %} {{ entry.vendor or '...' }} {{ entry.ago }} {% if not entry.already_exists %}
{% else %} Already exists in VLAN {{ entry.existing_vlan or 'unknown' }} {% endif %}
{% if pagination_fallback.pages|length > 1 %} {% endif %}