{# SPDX-License-Identifier: Apache-2.0 #} {# Copyright (C) 2025 Marcin Zieba #} {% extends 'base/layout.html' %} {% block title %}Device Type Analysis{% endblock %} {% block content %}
Device Type Analysis
{% if profile %} Profile: {{ profile.name }} {% endif %}

Shows explicit Device Type Mappings and whether each mapped device type exists in NetBox. Use this to identify gaps before running an import.

{# Profile filter #}
All profiles {% for p in profiles %} {{ p.name }} {% endfor %}
Explicit Mappings {{ entries|length }} mapping{{ entries|length|pluralize }}
{% for e in entries %} {% empty %} {% endfor %}
Profile Source Make Source Model Manufacturer Slug Device Type Slug In NetBox?
{{ e.profile.name }} {{ e.source_make }} {{ e.source_model }} {{ e.manufacturer_slug }} {{ e.device_type_slug }} {% if e.exists_in_netbox %} Yes {% else %} Missing {% endif %}
No explicit device type mappings found. {% if profile %} Add one. {% endif %}
{% endblock %}