{% extends "base.html" %} {% block title %}Interfaces - Vacuum Wall{% endblock %} {% block content %}
{% for iface in (interfaces or []) %} {% endfor %} {% if not (interfaces or []) %} {% endif %}
Interface MAC Address IP Address State Zone Action
{{ iface.get('name', 'unknown') }} {{ iface.get('mac', 'N/A') }} {% for ip in iface.get('ips', []) %} {{ ip }}{% if not loop.last %}, {% endif %} {% endfor %} {% if not iface.get('ips') %}N/A{% endif %} {{ 'Up' if iface.get('state') == 'up' else 'Down' }} {% if zones %} {% else %} No zones configured {% endif %}
No interfaces found
{% endblock %}