{% extends 'generic/object.html' %} {% load helpers %} {% load plugins %} {% load render_table from django_tables2 %} {% block breadcrumbs %} {{ block.super }} {% for group in object.get_ancestors %} {% endfor %} {% endblock %} {% block extra_controls %} {% if perms.netbox_inventory.add_inventoryitemtype %} Add inventory item type {% endif %} {% endblock extra_controls %} {% block content %}
Inventory Item Group
Name {{ object.name }}
Parent {{ object.parent|linkify|placeholder }}
Assets {{ asset_table.rows|length }}
{% include 'inc/panels/custom_fields.html' %}
Asset count by status
{% for sc in status_counts.values %} {% empty %} {% endfor %}
Status Count
{% badge value=sc.label bg_color=sc.color %} {{ sc.count }}
— No assets found —
Asset count by type & status
{% for tsc in type_status_objects %} {% empty %} {% endfor %}
Inventory Item Type Status - Count
{{ tsc.inventoryitem_type__manufacturer__name }} {{ tsc.inventoryitem_type__model }}
— No assets found —
{% plugin_left_page object %}
Child Groups
{% render_table child_groups_table 'inc/table.html' %}
{% if perms.netbox_inventory.add_inventoryitemgroup %} {% endif %}
{% include 'inc/panels/tags.html' %} {% include 'inc/panels/comments.html' %} {% plugin_right_page object %}
Assets
{% render_table asset_table 'inc/table.html' %} {% include 'inc/paginator.html' with paginator=asset_table.paginator page=asset_table.page %}
{% plugin_full_width_page object %}
{% endblock content %}