{% extends "layouts/content.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 }} download

Hostname
{{ device.hostname }}
Device type
{{ device.device_type }}
Exclusive
{{ device.is_exclusive }}
Extends
{{ device.get_extends }}
{% 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 %}