From c368fd6af31ea823d6c6c076b01c8b029c4c6990 Mon Sep 17 00:00:00 2001 From: Brian Tiemann Date: Thu, 26 Mar 2026 18:20:14 -0400 Subject: [PATCH] Fix display value of CustomField.type --- netbox/templates/extras/customfield/attrs/type.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/templates/extras/customfield/attrs/type.html b/netbox/templates/extras/customfield/attrs/type.html index 0f6cff9bd..82988599c 100644 --- a/netbox/templates/extras/customfield/attrs/type.html +++ b/netbox/templates/extras/customfield/attrs/type.html @@ -1 +1 @@ -{% load helpers %}{{ value }}{% if object.related_object_type %} ({{ object.related_object_type.model|bettertitle }}){% endif %} \ No newline at end of file +{% load helpers %}{{ object.get_type_display }}{% if object.related_object_type %} ({{ object.related_object_type.model|bettertitle }}){% endif %} \ No newline at end of file