{% extends 'generic/object.html' %} {% load helpers %} {% load plugins %} {% load render_table from django_tables2 %} {% block breadcrumbs %}
  • Power Panels
  • {{ object.site }}
  • {% if object.location %}
  • {{ object.location }}
  • {% endif %}
  • {{ object }}
  • {% endblock %} {% block content %}
    Power Panel
    Site {{ object.site }}
    Location {% if object.location %} {{ object.location }} {% else %} None {% endif %}
    {% plugin_left_page object %}
    {% include 'inc/custom_fields_panel.html' %} {% include 'extras/inc/tags_panel.html' with tags=object.tags.all url='dcim:powerpanel_list' %} {% plugin_right_page object %}
    {% csrf_token %}
    {% render_table powerfeed_table 'inc/table.html' %}
    {% plugin_full_width_page object %}
    {% endblock %}