{% extends 'generic/object.html' %} {% load buttons %} {% load static %} {% load custom_links %} {% load helpers %} {% load plugins %} {% block breadcrumbs %}
  • Power Feeds
  • {{ object.power_panel.site }}
  • {{ object.power_panel }}
  • {% if object.rack %}
  • {{ object.rack }}
  • {% endif %}
  • {{ object }}
  • {% endblock %} {% block content %}
    Power Feed
    {% with utilization=object.connected_endpoint.get_power_draw %} {% if utilization %} {% else %} {% endif %} {% endwith %}
    Power Panel {{ object.power_panel }}
    Rack {% if object.rack %} {{ object.rack }} {% else %} None {% endif %}
    Type {{ object.get_type_display }}
    Status {{ object.get_status_display }}
    Connected Device {% if object.connected_endpoint %} {{ object.connected_endpoint.device }} ({{ object.connected_endpoint }}) {% else %} None {% endif %}
    Utilization (Allocated) {{ utilization.allocated }}VA / {{ object.available_power }}VA {% if object.available_power > 0 %} {% utilization_graph utilization.allocated|percentage:object.available_power %} {% endif %} N/A
    Electrical Characteristics
    Supply {{ object.get_supply_display }}
    Voltage {{ object.voltage }}V
    Amperage {{ object.amperage }}A
    Phase {{ object.get_phase_display }}
    Max Utilization {{ object.max_utilization }}%
    {% include 'inc/custom_fields_panel.html' %} {% include 'extras/inc/tags_panel.html' with tags=object.tags.all url='dcim:powerfeed_list' %} {% plugin_left_page object %}
    Connection
    {% if object.mark_connected %}
    Marked as connected
    {% elif object.cable %} {% if object.connected_endpoint %} {% endif %}
    Cable {{ object.cable }}
    Device {{ object.connected_endpoint.device }}
    Name {{ object.connected_endpoint.name }}
    Type {{ object.connected_endpoint.get_type_display|placeholder }}
    Description {{ object.connected_endpoint.description|placeholder }}
    Path Status {% if object.path.is_active %} Reachable {% else %} Not Reachable {% endif %}
    {% else %}
    {% if perms.dcim.add_cable %} Connect {% endif %} Not connected
    {% endif %}
    Comments
    {% if object.comments %} {{ object.comments|render_markdown }} {% else %} None {% endif %}
    {% plugin_right_page object %}
    {% plugin_full_width_page object %}
    {% endblock %}