{% extends 'common/base.html' %} {% load racks_tag %} {% block title %}::{{ object.name }}{% endblock %} {% block content %}

{{ object.name }}

{% if object.assigned_user or object.assigned_group %}
{% if object.assigned_user %}
Contact Person
{{ object.assigned_user|racks_tag }}
{% endif %} {% if object.assigned_group %}
Contact Group
{{ object.assigned_group|racks_tag }}
{% endif %}
{% endif %}
Created {{ object.created }}
Modified {{ object.modified }}
Related bugs {% include 'inventory/bugs.html' %}
{% include 'common/detail_buttons.html' with object_name=object.name %}
{% for inventory_object in object.inventory_objects.all %} {% endfor %}
Name
{{ inventory_object.display_name }}
{% for vlan in object.vlans.all %} {% endfor %}
NameVLAN ID
{{ vlan.name }} {{ vlan.vlanid }}
{% for row in switches %} {% endfor %}
Switch Connected Inventory Objects
{{ row.switch.label }} {% for port in row.ports %} {% endfor %}
{{ port }} {% for l2address in port.l2addresses.all %} {% if l2address.inventory_object in object.inventory_objects.all %} {{ l2address.inventory_object|racks_tag }} @ {{ l2address|racks_tag }}
{% endif %} {% endfor %}
{% include 'common/permissions_view.html' %}
{% endblock %}