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