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

PDU Inlet

PDU {{ object.managed_pdu|linkify }}
Inlet Number {{ object.inlet_number }}
Inlet Name {{ object.inlet_name|placeholder }}
{% include 'inc/panels/custom_fields.html' %} {% include 'inc/panels/tags.html' %} {% include 'inc/panels/comments.html' %}

Power Data

Current (A) {% if object.current_a is not None %} {{ object.current_a|floatformat:2 }} A {% else %} {{ ""|placeholder }} {% endif %}
Active Power (W) {% if object.power_w is not None %} {{ object.power_w|floatformat:2 }} W {% else %} {{ ""|placeholder }} {% endif %}
Apparent Power (VA) {% if object.apparent_power_va is not None %} {{ object.apparent_power_va|floatformat:2 }} VA {% else %} {{ ""|placeholder }} {% endif %}
Voltage (V) {% if object.voltage_v is not None %} {{ object.voltage_v|floatformat:2 }} V {% else %} {{ ""|placeholder }} {% endif %}
Power Factor {% if object.power_factor is not None %} {{ object.power_factor|floatformat:2 }} {% else %} {{ ""|placeholder }} {% endif %}
Frequency (Hz) {% if object.frequency_hz is not None %} {{ object.frequency_hz|floatformat:2 }} Hz {% else %} {{ ""|placeholder }} {% endif %}
Accumulated Energy (Wh) {% if object.energy_wh is not None %} {{ object.energy_wh|floatformat:2 }} Wh {% else %} {{ ""|placeholder }} {% endif %}
Energy Reset At {{ object.energy_reset_at|placeholder }}
Last Updated from PDU {{ object.last_updated_from_pdu|placeholder }}
{% if object.poleline_l1_current_a is not None or object.poleline_l2_current_a is not None or object.poleline_l3_current_a is not None %}

Per-Phase Currents

{% if object.unbalanced_current_pct is not None %} {% endif %} {% if object.unbalanced_ll_current_pct is not None %} {% endif %} {% if object.unbalanced_ll_voltage_pct is not None %} {% endif %}
L1 Current (A) {% if object.poleline_l1_current_a is not None %}{{ object.poleline_l1_current_a|floatformat:2 }} A{% else %}{{ ""|placeholder }}{% endif %}
L2 Current (A) {% if object.poleline_l2_current_a is not None %}{{ object.poleline_l2_current_a|floatformat:2 }} A{% else %}{{ ""|placeholder }}{% endif %}
L3 Current (A) {% if object.poleline_l3_current_a is not None %}{{ object.poleline_l3_current_a|floatformat:2 }} A{% else %}{{ ""|placeholder }}{% endif %}
Current Unbalance {{ object.unbalanced_current_pct|floatformat:2 }} %
L-L Current Unbalance {{ object.unbalanced_ll_current_pct|floatformat:2 }} %
L-L Voltage Unbalance {{ object.unbalanced_ll_voltage_pct|floatformat:2 }} %
{% endif %} {% if linepairs %}

Line Pairs

{% for lp in linepairs %} {% endfor %}
Pair Voltage (V) Current (A) Power (W) Apparent (VA) PF Energy (Wh)
{{ lp.line_pair }} {% if lp.voltage_v is not None %}{{ lp.voltage_v|floatformat:2 }}{% else %}—{% endif %} {% if lp.current_a is not None %}{{ lp.current_a|floatformat:2 }}{% else %}—{% endif %} {% if lp.power_w is not None %}{{ lp.power_w|floatformat:2 }}{% else %}—{% endif %} {% if lp.apparent_power_va is not None %}{{ lp.apparent_power_va|floatformat:2 }}{% else %}—{% endif %} {% if lp.power_factor is not None %}{{ lp.power_factor|floatformat:2 }}{% else %}—{% endif %} {% if lp.energy_wh is not None %}{{ lp.energy_wh|floatformat:0 }}{% else %}—{% endif %}
{% endif %} {% if thresholds %}

Thresholds

{% for t in thresholds %} {% endfor %}
Sensor Lower Critical Lower Warning Upper Warning Upper Critical
{{ t.label }} ({{ t.unit }}) {% if t.lower_critical is not None %}{{ t.lower_critical }}{% else %}—{% endif %} {% if t.lower_warning is not None %}{{ t.lower_warning }}{% else %}—{% endif %} {% if t.upper_warning is not None %}{{ t.upper_warning }}{% else %}—{% endif %} {% if t.upper_critical is not None %}{{ t.upper_critical }}{% else %}—{% endif %}
{% endif %} {% if perms.netbox_pdu_plugin.change_managedpdu %}

Actions

{% csrf_token %}
{% csrf_token %}
{% endif %}
{% endblock content %}