diff --git a/netbox/templates/dcim/moduletype.html b/netbox/templates/dcim/moduletype.html index adc5e2a98..1c77a33c7 100644 --- a/netbox/templates/dcim/moduletype.html +++ b/netbox/templates/dcim/moduletype.html @@ -75,7 +75,13 @@ {% for k, v in object.attributes.items %} {{ k }} - {{ v|placeholder }} + + {% if v is True or v is False %} + {% checkmark v %} + {% else %} + {{ v|placeholder }} + {% endif %} + {% endfor %}