{% extends 'frontend/base.html' %} {% load static %} {% load tags %} {% load filters %} {% block navbar %} {% include 'frontend/snippet.navlinks.html' %} {% endblock %} {% block content %}

{{ run.run_id }}

{% if run.object_type == "bmc" %} {% elif run.object_type == "enclosure" %} {% elif run.object_type == "machine" %} {% elif run.object_type == "network_interface" %} {% else %} {% endif %}
Comparison run at: {{ run.compare_timestamp }}
Object type: {{ run.object_type }}
Object Name:{{ run.object_bmc.fqdn }}{{ run.object_enclosure.name }}{{ run.object_machine.fqdn }}{{ run.object_network_interface.fqdn }}Unkown object name
{% for result in run.results.all %} {% if result.orthos_result == result.netbox_result %} {% else %} {% endif %} {% endfor %}
Property Name Orthos NetBox Is data equal?
{{ result.property_name }} {{ result.orthos_result|format_empty_str }} {{ result.netbox_result|format_empty_str }}
{% endblock %}