{# SPDX-License-Identifier: Apache-2.0 #} {# Copyright (C) 2025 Marcin Zieba #} {% extends 'base/layout.html' %} {% block title %}Route-Policy Capabilities — {{ object }}{% endblock %} {% block content %}
Route-Policy Capabilities — {{ object }}
{% csrf_token %}
{% if known %} {% if coverage_unknown %} {% endif %}

What this device can apply for route-maps and communities, by {{ ned_id }} / software {{ sw_version }}. Devices with the same NED + software share this verdict. {% if flagged %} {{ flagged }} of {{ total }} construct{{ total|pluralize }} won't fully apply. {% elif total %} All {{ total }} probed construct{{ total|pluralize }} apply. {% endif %}

{% if read_rows %}
Read support

Which config scopes the adapter can read from this platform into the NetBox mirror — fed by the live read probe. {{ read_readable }} of {{ read_rows|length }} probed scope{{ read_rows|length|pluralize }} confirmed readable.

{% for el in read_rows %} {% endfor %}
ScopeVerdictDetail
{{ el.scope }} {% if el.status == "native" %} readable {% elif el.status == "unknown" %} unconfirmed {% elif el.status == "skipped" %} n/a on platform {% else %} {{ el.status }} {% endif %} {{ el.detail|default:"—" }}
{% endif %} {% for scope, elements in scopes.items %} {% if elements %}
{{ scope }}
{% for el in elements %} {% endfor %}
ElementVerdictSourceDetail
{{ el.name }} {% if el.status == "native" %} native {% elif el.status == "translated" %} translated {% elif el.status == "skipped" %} skipped {% else %} {{ el.status }} {% endif %} {% if el.source == "apply" %} apply {% else %} probe {% endif %} {{ el.detail|default:"—" }}
{% endif %} {% endfor %} {% else %}

This device's capabilities aren't known yet — it has never been probed, or the adapter is unreachable. Use Check now to probe it.

{% endif %} Back to NSO tab
{% endblock %}