Просмотр исходного кода

Fixes #21518: Ensure proper display of decimal custom fields with a zero value (#21523)

Jeremy Stretch 1 день назад
Родитель
Сommit
071d4a63aa
1 измененных файлов с 2 добавлено и 0 удалено
  1. 2 0
      netbox/utilities/templates/builtins/customfield_value.html

+ 2 - 0
netbox/utilities/templates/builtins/customfield_value.html

@@ -2,6 +2,8 @@
 {% load i18n %}
 {% if customfield.type == 'integer' and value is not None %}
   {{ value }}
+{% elif customfield.type == 'decimal' and value is not None %}
+  {{ value }}
 {% elif customfield.type == 'longtext' and value %}
   {{ value|markdown }}
 {% elif customfield.type == 'boolean' and value == True %}