{# SPDX-License-Identifier: Apache-2.0 #} {# Copyright (C) 2025 Marcin Zieba #} {# Bulk-mark a device's divergent route-policy groups as per-device (LOCAL). #} {% extends 'base/layout.html' %} {% block title %}Resolve divergent route-policy — {{ object }}{% endblock %} {% block content %}
Divergent route-policy on {{ object }}

These shared objects differ between this device and the netbox-routing source (master). Select the ones that are per-device by design (e.g. VRRP or per-region prefix lists) and mark them per-device — each device keeps its own version and the difference stops being flagged as drift. This applies to the whole shared group, not just this device. Use Diff to compare before deciding.

{% if rows %}
{% csrf_token %} {% for rp in rows %} {% endfor %}
FamilyNameStatus
{{ rp.family|cut:"_"|capfirst }} {{ rp.object_name }} {% include "netbox_nso_plugin/categories/_state_badge.html" with status=rp.status %} {% if rp.assigned_object %} Diff {% endif %}
Cancel
{% else %}

No divergent shared route-policy objects on this device.

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