{% extends "generic/object.html" %} {% load render_table from django_tables2 %} {% load plugins %} {% block content %}
Probed Item
Time {{ object.time }}
Creation Time {{ object.creation_time }}
Name {{ object.name }}
Serial {{ object.serial }}
Description {{ object.description }}
Part {{ object.part }}
Class {{ object.category }}
Class {{ object.category }}
Device descriptor {{ object.device_descriptor }}
Device {% if object.device %} {{ object.device.name }} {% else %} {{ ''|placeholder }} {% endif %}
Site descriptor {{ object.site_descriptor }}
Site {% if object.site %} {{ object.site.name }} {% else %} {{ ''|placeholder }} {% endif %}
Location descriptor {{ object.location_descriptor }}
Location {% if object.location %} {{ object.location.name }} {% else %} {{ ''|placeholder }} {% endif %}
Discovered Data
{{ object.discovered_data|json }}
{% include "inc/panels/custom_fields.html" %} {% plugin_left_page object %}
{% include "inc/panels/tags.html" %} {% include "inc/panels/comments.html" %} {% plugin_right_page object %}
Inventory Items
{% htmx_table 'dcim:inventoryitem_list' cf_inventory_monitor_probe=object.pk %}
History
{% htmx_table 'plugins:inventory_monitor:probe_list' serial=object.serial %}
{% plugin_full_width_page object %}
{% endblock content %}