{# Checkbox #}
{% if perms.dcim.change_consoleport or perms.dcim.delete_consoleport %}
|
{% endif %}
{# Name #}
{{ cp }}
|
{# Type #}
{% if cp.type %}{{ cp.get_type_display }}{% else %}—{% endif %}
|
{# Description #}
{{ cp.description }}
|
{# Cable #}
{% if cp.cable %}
{{ cp.cable }}
{% else %}
—
{% endif %}
|
{# Connection #}
{% include 'dcim/inc/endpoint_connection.html' with paths=cp.paths.all %}
{# Actions #}
{% if cp.cable %}
{% include 'dcim/inc/cable_toggle_buttons.html' with cable=cp.cable %}
{% elif perms.dcim.add_cable %}
{% endif %}
{% if perms.dcim.change_consoleport %}
{% endif %}
{% if perms.dcim.delete_consoleport %}
{% if cp.connected_endpoint %}
{% else %}
{% endif %}
{% endif %}
|