{% extends 'netbox_ip_history/base.html' %} {% load i18n %} {% block title %}{% if ip %}{{ ip }} | {% endif %}{% trans "Source Comparison" %}{% endblock %} {% block page_title %}{% if ip %}{{ ip }}{% else %}{% trans "Source Comparison" %}{% endif %}{% endblock %} {% block subtitle %} {% if ip %} {% trans "Source Reconciliation" %} {% endif %} {% endblock %} {% block ip_history_content %}
{% if ip %} {% endif %}
{% if ip %} {% trans "View Timeline" %} {% trans "Reset" %} {% endif %}
{% if ip and rows %}
{% trans "Compared Target" %}
{{ ip }}
{% trans "Active Sources" %}
{{ rows|length }}
{% trans "Scope Status" %}
{% trans "Multi-Source Comparison" %}
{% endif %}
{% for row in rows %} {% empty %} {% endfor %}
{% trans "Source" %} {% trans "Hostname" %} {% trans "Owner / Device" %} {% trans "DNS Record" %} {% trans "MAC Address" %} {% trans "VRF" %} {% trans "Last Seen" %}
{% if row.native %} NetBox {% else %} {{ row.source }} {% endif %} {{ row.hostname|default:"—" }} {{ row.owner|default:"—" }} {{ row.dns|default:"—" }} {{ row.mac|default:"—" }} {{ row.vrf }} {{ row.last_seen|date:"Y-m-d H:i" }}
{% if ip %} {% trans "No records found across active sources for this IP." %} {% else %} {% trans "Enter an IP address above to compare records across data sources." %} {% endif %}
{% if rows %}
{% trans "Showing" %} {{ rows|length }} {% trans "sources for" %} {{ ip }}
{% endif %}
{% endblock %}