From b28729baff8996c89f4e9f8db3c9c3b16b1299c7 Mon Sep 17 00:00:00 2001 From: Josh Niec Date: Thu, 20 Feb 2020 12:03:09 -0600 Subject: [PATCH] Fix rendering for powerfeeds_list to show any added custom fields or tags on object Signed-off-by: Josh Niec --- netbox/templates/dcim/powerfeed.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/netbox/templates/dcim/powerfeed.html b/netbox/templates/dcim/powerfeed.html index 1f6c6ab8e..77f72adaf 100644 --- a/netbox/templates/dcim/powerfeed.html +++ b/netbox/templates/dcim/powerfeed.html @@ -121,6 +121,8 @@ + {% include 'inc/custom_fields_panel.html' with obj=powerfeed %} + {% include 'extras/inc/tags_panel.html' with tags=powerfeed.tags.all url='dcim:powerfeed_list' %}
Comments