{% extends 'generic/object.html' %} {% load buttons %} {% load static %} {% load helpers %} {% load plugins %} {% block breadcrumbs %} {{ block.super }} {% if object.rack %} {% endif %} {% endblock %} {% block content %}
Power Feed
{% with utilization=object.connected_endpoint.get_power_draw %} {% if utilization %} {% else %} {% endif %} {% endwith %}
Power Panel {{ object.power_panel }}
Rack {% if object.rack %} {{ object.rack }} {% else %} None {% endif %}
Type {{ object.get_type_display }}
Status {{ object.get_status_display }}
Connected Device {% if object.connected_endpoint %} {{ object.connected_endpoint.device }} ({{ object.connected_endpoint }}) {% else %} None {% endif %}
Utilization (Allocated) {{ utilization.allocated }}VA / {{ object.available_power }}VA {% if object.available_power > 0 %} {% utilization_graph utilization.allocated|percentage:object.available_power %} {% endif %} N/A
Electrical Characteristics
Supply {{ object.get_supply_display }}
Voltage {{ object.voltage }}V
Amperage {{ object.amperage }}A
Phase {{ object.get_phase_display }}
Max Utilization {{ object.max_utilization }}%
{% include 'inc/panels/custom_fields.html' %} {% include 'inc/panels/tags.html' %} {% 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
{% endif %}
{% if not object.mark_connected and not object.cable %} {% endif %}
{% include 'inc/panels/comments.html' %} {% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}