{% extends "generic/object.html" %} {% load render_table from django_tables2 %} {% load plugins %} {% block content %}
Probed Item
Time {{ object.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
{% render_table inventory_items_table %}
History
{% render_table probe_table %}
{% plugin_full_width_page object %}
{% endblock content %}