{% load humanize %} {% load helpers %} {% with config=settings.PLUGINS_CONFIG.axians_netbox_pdu %} {% if config.rack_view_pdu_devices %}
Power Usage Devices
{% for pdu in pdus %} {%endfor %}
Device Power Usage Last Updated
{{pdu.name}} {{pdu.pdustatus.get_power_usage}} {{ pdu.pdustatus.updated_at|naturaltime }}
{% endif %} {% if config.rack_view_usage_summary %}
Power Usage Summary
{% if total_power_usage_unit %} {% endif %} {% if total_available_power %} {% endif %} {% if total_power_usage_percentage %} {% endif %}
Total Power Usage {{ total_power_usage }} {{ total_power_usage_unit|title }}
Total Power Available {{ total_available_power }} {{ total_power_usage_unit|title }}
Utilization {% utilization_graph total_power_usage_percentage %}
{% endif %} {% endwith %}