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