{% extends "generic/object.html" %} {% load render_table from django_tables2 %} {% load plugins %} {% load static %} {% block content %}
Basic Information
Name {{ object.name|placeholder }}
Serial Number {{ object.serial|placeholder }}
Part Number {{ object.part|placeholder }}
Category {{ object.category|placeholder }}
Description {{ object.description|placeholder }}
Timing Information {% if object.is_recently_probed %} Recent {% else %} Stale {% endif %}
Last Probe Time {% if object.time %} {{ object.time|date:"Y-m-d H:i:s" }} {% else %} {{ ''|placeholder }} {% endif %}
{% include "inc/panels/custom_fields.html" %} {% plugin_left_page object %}
Location Information
Device {% if object.device %} {{ object.device.name }} {% if object.device_descriptor %}
{{ object.device_descriptor }} {% endif %} {% else %} {{ object.device_descriptor|placeholder }} {% endif %}
Site {% if object.site %} {{ object.site.name }} {% if object.site_descriptor %}
{{ object.site_descriptor }} {% endif %} {% else %} {{ object.site_descriptor|placeholder }} {% endif %}
Location {% if object.location %} {{ object.location.name }} {% if object.location_descriptor %}
{{ object.location_descriptor }} {% endif %} {% else %} {{ object.location_descriptor|placeholder }} {% endif %}
Discovery Data
Raw Discovery Data
{{ object.discovered_data|json }}
{% include "inc/panels/tags.html" %} {% include "inc/panels/comments.html" %} {% plugin_right_page object %}
History
{% htmx_table 'plugins:inventory_monitor:probe_list' serial=object.serial %}
{% plugin_full_width_page object %}
{% endblock content %}