|
|
@@ -84,6 +84,7 @@ class DeviceRoleIndex(SearchIndex):
|
|
|
('name', 100),
|
|
|
('slug', 110),
|
|
|
('description', 500),
|
|
|
+ ('comments', 5000),
|
|
|
)
|
|
|
display_attrs = ('description',)
|
|
|
|
|
|
@@ -117,6 +118,7 @@ class MACAddressIndex(SearchIndex):
|
|
|
fields = (
|
|
|
('mac_address', 100),
|
|
|
('description', 500),
|
|
|
+ ('comments', 5000),
|
|
|
)
|
|
|
display_attrs = ('assigned_object', 'description')
|
|
|
|
|
|
@@ -239,6 +241,7 @@ class PlatformIndex(SearchIndex):
|
|
|
('name', 100),
|
|
|
('slug', 110),
|
|
|
('description', 500),
|
|
|
+ ('comments', 5000),
|
|
|
)
|
|
|
display_attrs = ('manufacturer', 'description')
|
|
|
|