{% extends 'dcim/device_component.html' %} {% load helpers %} {% load plugins %} {% block content %}
Power Outlet
Device {{ object.device }}
Name {{ object.name }}
Label {{ object.label|placeholder }}
Type {{ object.get_type_display }}
Description {{ object.description|placeholder }}
Power Port {{ object.power_port }}
Feed Leg {{ object.get_feed_leg_display|placeholder }}
{% include 'inc/custom_fields_panel.html' %} {% include 'extras/inc/tags_panel.html' with tags=object.tags.all %} {% plugin_left_page object %}
Connection
{% if object.mark_connected %}
Marked as Connected
{% elif object.cable %} {% if object.connected_endpoint %} {% endif %}
Cable {{ object.cable }}
Device {{ object.connected_endpoint.device }}
Name {{ object.connected_endpoint.name }}
Type {{ object.connected_endpoint.get_type_display|placeholder }}
Description {{ object.connected_endpoint.description|placeholder }}
Path Status {% if object.path.is_active %} Reachable {% else %} Not Reachable {% endif %}
{% else %}
Not Connected {% if perms.dcim.add_cable %} Connect {% endif %}
{% endif %}
{% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}