{% extends "layouts/content.html" %} {% load utils %} {% 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 }}
Extends
{{ device.get_extends }}
{% if dictionary %}
{% for key, value in dictionary.items %}
{{ key }}
{% if value|is_list_type %}
{% for line in value %}
{{ line }}
{% endfor %}
{% else %}
{{ value }}
{% endif %} {% endfor %}
{% endif %} {% if connections %}
{% for key, value in connections.items %}
{{ key }}
{{ value }}
{% endfor %}
{% endif %} {% 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 %}