{% load helpers %} {# Checkbox #} {% if perms.dcim.change_rearport or perms.dcim.delete_rearport %} {% endif %} {# Name #} {{ rearport }} {# Type #} {{ rearport.get_type_display }} {# Positions #} {{ rearport.positions }} {# Description #} {{ rearport.description|placeholder }} {# Cable/connection #} {% if rearport.cable %} {{ rearport.cable }} {% with far_end=rearport.get_cable_peer %} {% if far_end.parent.provider %} {{ far_end.parent.provider }} {{ far_end.parent }} {% else %} {{ far_end.parent }} {% endif %} {{ far_end }} {% endwith %} {% else %} Not connected {% endif %} {# Actions #} {% if rearport.cable %} {% include 'dcim/inc/cable_toggle_buttons.html' with cable=rearport.cable %} {% elif perms.dcim.add_cable %} {% endif %} {% if perms.dcim.change_rearport %} {% endif %} {% if perms.dcim.delete_rearport %} {% endif %}