{% extends "layouts/content-bootstrap.html" %} {% block content %} {% if device.device_type.owners_only %}

{{ device.device_type.name }} is a hidden device type.

Only owners of one or more devices of type {{ device.device_type }} can see this information.
{% endif %}

Device Dictionary for {{ device.hostname }} - {{ device.device_type }} {{ device.device_type.architecture|default:'' }}

{% for key, value in dictionary.items %}
{{ key }}
{{ value }}
{% endfor %}
{% if extra %}
{% for key, value in extra.items %}
{{ key }}
{{ value }}
{% endfor %}
{% endif %} {% if vland %}
{% for key, value in vland.items %}
{{ key }}
{{ value }}
{% endfor %}
{% endif %}
{% endblock %}