Back to Netbox

Utilization

netbox/templates/dcim/powerfeed/attrs/utilization.html

4.6.1433 B
Original Source

{% load helpers i18n %} {% if value %} {% with utilization=value.0.get_power_draw %} {% if utilization %} {{ utilization.allocated }}{% trans "VA" %} / {{ object.available_power }}{% trans "VA" %} {% if object.available_power > 0 %} {% utilization_graph utilization.allocated|percentage:object.available_power %} {% endif %} {% else %} {{ ''|placeholder }} {% endif %} {% endwith %} {% else %} {{ ''|placeholder }} {% endif %}