瀏覽代碼

Fixes #1605: Added clusters and virtual machines to object list for global search

Jeremy Stretch 8 年之前
父節點
當前提交
047f22e110
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. 4 0
      netbox/netbox/forms.py

+ 4 - 0
netbox/netbox/forms.py

@@ -30,6 +30,10 @@ OBJ_TYPE_CHOICES = (
     ('Tenancy', (
         ('tenant', 'Tenants'),
     )),
+    ('Virtualization', (
+        ('cluster', 'Clusters'),
+        ('virtualmachine', 'Virtual machines'),
+    )),
 )