diff --git a/netbox/templates/circuits/circuit.html b/netbox/templates/circuits/circuit.html
index 8844dc43a..46f37c44f 100644
--- a/netbox/templates/circuits/circuit.html
+++ b/netbox/templates/circuits/circuit.html
@@ -104,6 +104,9 @@
+ {% with circuit.get_custom_fields as custom_fields %}
+ {% include 'inc/custom_fields_panel.html' %}
+ {% endwith %}
{% include 'inc/created_updated.html' with obj=circuit %}
diff --git a/netbox/templates/ipam/ipaddress.html b/netbox/templates/ipam/ipaddress.html
index 56f95479b..7524b00fe 100644
--- a/netbox/templates/ipam/ipaddress.html
+++ b/netbox/templates/ipam/ipaddress.html
@@ -121,6 +121,9 @@
+ {% with ipaddress.get_custom_fields as custom_fields %}
+ {% include 'inc/custom_fields_panel.html' %}
+ {% endwith %}
{% include 'inc/created_updated.html' with obj=ipaddress %}
diff --git a/netbox/templates/ipam/prefix.html b/netbox/templates/ipam/prefix.html
index 24a40ed66..89f06bb47 100644
--- a/netbox/templates/ipam/prefix.html
+++ b/netbox/templates/ipam/prefix.html
@@ -101,6 +101,9 @@
+ {% with prefix.get_custom_fields as custom_fields %}
+ {% include 'inc/custom_fields_panel.html' %}
+ {% endwith %}
{% include 'inc/created_updated.html' with obj=prefix %}
diff --git a/netbox/templates/ipam/vlan.html b/netbox/templates/ipam/vlan.html
index 5b9d4cd3c..f25de0295 100644
--- a/netbox/templates/ipam/vlan.html
+++ b/netbox/templates/ipam/vlan.html
@@ -110,6 +110,9 @@
+ {% with vlan.get_custom_fields as custom_fields %}
+ {% include 'inc/custom_fields_panel.html' %}
+ {% endwith %}
{% include 'inc/created_updated.html' with obj=vlan %}
diff --git a/netbox/templates/ipam/vrf.html b/netbox/templates/ipam/vrf.html
index 899b14f54..dc8903418 100644
--- a/netbox/templates/ipam/vrf.html
+++ b/netbox/templates/ipam/vrf.html
@@ -82,6 +82,9 @@
+ {% with vrf.get_custom_fields as custom_fields %}
+ {% include 'inc/custom_fields_panel.html' %}
+ {% endwith %}
{% include 'inc/created_updated.html' with obj=vrf %}