+
+ Interfaces |
+
+ {% with component_count=object.interfaces.count %}
+ {% if component_count %}
+ {{ component_count }}
+ {% else %}
+ None
+ {% endif %}
+ {% endwith %}
+ |
+
+
+ Console Ports |
+
+ {% with component_count=object.consoleports.count %}
+ {% if component_count %}
+ {{ component_count }}
+ {% else %}
+ None
+ {% endif %}
+ {% endwith %}
+ |
+
+
+ Console Server Ports |
+
+ {% with component_count=object.consoleserverports.count %}
+ {% if component_count %}
+ {{ component_count }}
+ {% else %}
+ None
+ {% endif %}
+ {% endwith %}
+ |
+
+
+ Power Ports |
+
+ {% with component_count=object.powerports.count %}
+ {% if component_count %}
+ {{ component_count }}
+ {% else %}
+ None
+ {% endif %}
+ {% endwith %}
+ |
+
+
+ Power Outlets |
+
+ {% with component_count=object.poweroutlets.count %}
+ {% if component_count %}
+ {{ component_count }}
+ {% else %}
+ None
+ {% endif %}
+ {% endwith %}
+ |
+
+
+ Front Ports |
+
+ {% with component_count=object.frontports.count %}
+ {% if component_count %}
+ {{ component_count }}
+ {% else %}
+ None
+ {% endif %}
+ {% endwith %}
+ |
+
+
+ Rear Ports |
+
+ {% with component_count=object.rearports.count %}
+ {% if component_count %}
+ {{ component_count }}
+ {% else %}
+ None
+ {% endif %}
+ {% endwith %}
+ |
+
+