{# Checkbox #} {% if perms.dcim.change_powerport or perms.dcim.delete_powerport %} {% endif %} {# Name #} {{ pp }} {# Type #} {{ pp.get_type_display }} {# Current draw #} {% if pp.allocated_draw %} {{ pp.allocated_draw }}W{% if pp.maximum_draw %} ({{ pp.maximum_draw }}W max){% endif %} {% elif pp.maximum_draw %} {{ pp.maximum_draw }}W {% endif %} {# Description #} {{ pp.description }} {# Cable #} {% if pp.cable %} {{ pp.cable }} {% else %} — {% endif %} {# Connection #} {% if pp.connected_endpoint.device %} {{ pp.connected_endpoint.device }} {{ pp.connected_endpoint }} {% elif pp.connected_endpoint %} {{ pp.connected_endpoint }} {% else %} Not connected {% endif %} {# Actions #} {% if pp.cable %} {% include 'dcim/inc/cable_toggle_buttons.html' with cable=pp.cable %} {% elif perms.dcim.add_cable %} {% endif %} {% if perms.dcim.change_powerport %} {% endif %} {% if perms.dcim.delete_powerport %} {% if pp.connected_endpoint %} {% else %} {% endif %} {% endif %}