diff --git a/netbox/templates/extras/customfieldchoiceset.html b/netbox/templates/extras/customfieldchoiceset.html index f1e5ae7d6..e77a8432d 100644 --- a/netbox/templates/extras/customfieldchoiceset.html +++ b/netbox/templates/extras/customfieldchoiceset.html @@ -55,12 +55,17 @@ Label - {% for value, label in object.choices %} + {% for value, label in object.choices|slice:":50" %} {{ value }} {{ label }} {% endfor %} + {% if object.choices|length > 50 %} + + (Additional choices not displayed) + + {% endif %}