{% extends 'generic/object.html' %} {% load helpers %} {% load plugins %} {% load i18n %} {% block content %}

{% trans "Planned power feed" %}

{% trans "Design" %} {{ object.design|linkify }}
{% trans "Rack" %} {{ object.rack|linkify }}
{% trans "Name" %} {{ object.name }}
{% include 'inc/panels/custom_fields.html' %} {% plugin_left_page object %}

{% trans "Electrical" %}

{# What this feed actually contributes to the rack's capacity bar: #} {# breaker size derated by the instance's max-utilization, the same #} {# figure the projection charges against. #}
{% trans "Voltage" %} {{ object.voltage }} V
{% trans "Amperage" %} {{ object.amperage }} A
{% trans "Phase" %} {{ object.get_phase_display }}
{% trans "Supply" %} {{ object.get_supply_display }}
{% trans "Derated capacity" %} {{ object.derated_watts }} W
{% include 'inc/panels/tags.html' %} {% plugin_right_page object %}

{% trans "Bound planned PDUs" %}

{# Deleting this feed unbinds these PDUs -- their banks lose their sizing #} {# and the rack falls back to its default capacity, so the plan says up #} {# front what a delete will cost. #} {% for placement in object.bound_placements.all %} {% empty %} {% endfor %}
{{ placement|linkify }} {{ placement.target_rack|linkify|placeholder }}
{% trans "No planned PDU is bound to this feed." %}
{% plugin_full_width_page object %}
{% endblock content %}