{% extends 'generic/object.html' %} {% load i18n %} {% load helpers %} {% block content %}
{% if active_src_zones or active_dst_zones %}
Active zone filter {% if active_src_zones %}  —  Source: {% for z in active_src_zones %} {{ z.name }} {% endfor %} {% endif %} {% if active_dst_zones %}  →  Destination: {% for z in active_dst_zones %} {{ z.name }} {% endfor %} {% endif %}
Reset filter
{% endif %} {% if active_src_objs or active_dst_objs %}
Active object filter {% if active_src_objs %}  —  Source: {% for obj in active_src_objs %} {{ obj.name }} {% endfor %} {% endif %} {% if active_dst_objs %}  →  Destination: {% for obj in active_dst_objs %} {{ obj.name }} {% endfor %} {% endif %}
Reset filter
{% endif %} {% if is_security_rules %}
Security Rules {% if perms.netbox_nsm.add_securityzonepolicyrule %} Add Rule {% endif %}
Search {% if search_q %} active {% endif %}
{% for v in src_filter %} {% endfor %} {% for v in dst_filter %} {% endfor %}
{% endif %}
{% csrf_token %}
{% include 'htmx/table.html' %}
{% endblock %}