{# SPDX-License-Identifier: Apache-2.0 #} {# Copyright (C) 2025 Marcin Zieba #} {# Device-vs-NetBox field delta for one redistribution overlay row. #} {% extends 'base/layout.html' %} {% block title %}Drift delta — redistribution{% endblock %} {% block content %}
Drift delta — redistribute {{ state.source_protocol }} into {{ state.dest_protocol }}{% if state.dest_ref %} {{ state.dest_ref }}{% endif %} {% if device %}on {{ device }}{% endif %}
{% if diff.removed_on_device %}
Removed on the device — this redistribution is gone from the device but still exists in NetBox. Accept to take ownership, or delete the NetBox object to match the device.
{% elif not diff.linked %}
No NetBox redistribution object is linked yet — the comparison shows the device-only intent that can be materialised.
{% elif not diff.any_diff %}
The device and NetBox match — no drift.
{% endif %} {% if unified_diff %} {% include "netbox_nso_plugin/inc/diff2html_viewer.html" %} {% endif %} {% if device %} Back to {{ device }} {% endif %}
{% endblock %}