| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- from netbox.search import SearchIndex, register_search
- from . import models
- @register_search
- class ContactIndex(SearchIndex):
- model = models.Contact
- fields = (
- ('name', 100),
- ('title', 300),
- ('phone', 300),
- ('email', 300),
- ('address', 300),
- ('link', 300),
- ('description', 500),
- ('comments', 5000),
- )
- @register_search
- class ContactGroupIndex(SearchIndex):
- model = models.ContactGroup
- fields = (
- ('name', 100),
- ('slug', 110),
- ('description', 500),
- )
- @register_search
- class ContactRoleIndex(SearchIndex):
- model = models.ContactRole
- fields = (
- ('name', 100),
- ('slug', 110),
- ('description', 500),
- )
- @register_search
- class TenantIndex(SearchIndex):
- model = models.Tenant
- fields = (
- ('name', 100),
- ('slug', 110),
- ('description', 500),
- ('comments', 5000),
- )
- @register_search
- class TenantGroupIndex(SearchIndex):
- model = models.TenantGroup
- fields = (
- ('name', 100),
- ('slug', 110),
- ('description', 500),
- )
|