{% extends 'frontend/base.html' %} {% load static %} {% load filters %} {% load tags %} {% block navbar %} {% include 'frontend/snippet.navlinks.html' %} {% include 'frontend/snippet.search.html' %} {% endblock %} {% block content %}
{% if runs %} {% for run in runs %} {% if run.object_type == "bmc" %} {% elif run.object_type == "enclosure" %} {% elif run.object_type == "machine" %} {% elif run.object_type == "network_interface" %} {% else %} {% endfor %}
UUID {% order_list request 'run_id' %} Run at {% order_list request 'compare_timestamp' %} Object Type {% order_list request 'object_type' %} Object Name
{{ run.run_id }} {{ run.compare_timestamp }} {{ run.object_type }}{{ run.object_bmc.fqdn }}{{ run.object_enclosure.name }}{{ run.object_machine.fqdn }}{{ run.object_network_interface.name }}Unkown object name {% endif %}
{% else %}
No NetBox Orthos comparison runs found!
{% endif %} {% include 'frontend/snippet.paginator.html' %}
{% endblock %}