{% extends 'generic/object.html' %} {% load helpers %} {% load plugins %} {% load i18n %} {% block breadcrumbs %} {{ block.super }} {% endblock %} {% block content %}
{% trans "Power Port" %}
{% trans "Device" %} {{ object.device|linkify }}
{% trans "Module" %} {{ object.module|linkify|placeholder }}
{% trans "Name" %} {{ object.name }}
{% trans "Label" %} {{ object.label|placeholder }}
{% trans "Type" %} {{ object.get_type_display|placeholder }}
{% trans "Description" %} {{ object.description|placeholder }}
{% trans "Maximum Draw" %} {{ object.maximum_draw|placeholder }}
{% trans "Allocated Draw" %} {{ object.allocated_draw|placeholder }}
{% include 'inc/panels/custom_fields.html' %} {% include 'inc/panels/tags.html' %} {% plugin_left_page object %}
{% trans "Connection" %}
{% if object.mark_connected %}
{% trans "Marked as Connected" %}
{% elif object.cable %} {% include 'dcim/inc/connection_endpoints.html' with trace_url='dcim:powerport_trace' %} {% else %}
{% trans "Not Connected" %} {% if perms.dcim.add_cable %} {% endif %}
{% endif %}
{% include 'dcim/inc/panels/inventory_items.html' %} {% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}