{% extends 'generic/object.html' %} {% load helpers %} {% load i18n %} {% load plugins %} {% block content %} {# ── ObjectGroup chain section ───────────────────────────────────────── #}
{% trans "Object Group Membership" %}
{% if group_chains %}

{% trans "Every path from this IP range through its address-objects up to the root group." %} {% trans "Rows highlighted in yellow are matched via a containing prefix (inherited)." %}

{% for entry in group_chains %} {% endfor %}
{% trans "Address Object" %} {% trans "Group Chain (leaf → root)" %} {% trans "Inherited via" %}
{{ entry.oco }} {% for group in entry.chain %} {% if not forloop.first %} {% endif %} {{ group.name }} {% endfor %} {% if entry.inherited and entry.via %} {% trans "Subnet" %} {{ entry.via }} {% else %} {% endif %}
{% else %} {% trans "This IP range is not referenced in any Object Group." %} {% endif %}
{% plugin_full_width_page object %} {% endblock %}