From 0e1c7c82f412ef8858cabe12285ba3842a37f7ad Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Mon, 16 Oct 2017 16:44:15 -0400 Subject: [PATCH] Fixes #1605: Added clusters and virtual machines to object list for global search --- netbox/netbox/forms.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/netbox/netbox/forms.py b/netbox/netbox/forms.py index 72a3ab8de..0521f2d2f 100644 --- a/netbox/netbox/forms.py +++ b/netbox/netbox/forms.py @@ -30,6 +30,10 @@ OBJ_TYPE_CHOICES = ( ('Tenancy', ( ('tenant', 'Tenants'), )), + ('Virtualization', ( + ('cluster', 'Clusters'), + ('virtualmachine', 'Virtual machines'), + )), )