{% extends 'base.html' %}
{% block title %}Authentication Stats{% endblock %}
{% block content %}
Authentication Stats
Recent Access-Accept
| MAC Address |
Description |
Vendor |
Time |
{% for entry in accept_entries %}
| {{ entry.mac_address }} |
{{ entry.description or '' }} |
{{ entry.vendor }} |
{{ entry.ago }} |
{% endfor %}
Recent Access-Reject
| MAC Address |
Description |
Vendor |
Time |
Actions |
{% for entry in reject_entries %}
| {{ entry.mac_address }} |
{{ entry.description or '' }} |
{{ entry.vendor }} |
{{ entry.ago }} |
{% if entry.already_exists %}
Already exists in VLAN {{ entry.existing_vlan or 'unknown' }}
{% else %}
{% endif %}
|
{% endfor %}
{% endblock %}