mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-14 01:41:22 -06:00

* Add SavedTableConfig * Update table configuration logic to support TableConfigs * Update table config link when updating table * Correct docstring * Misc cleanup * Use multi-select widgets for column selection * Return null config params for tables with no model * Fix auto-selection of selected columns * Update migration * Clean up template * Enforce enabled/shared flags * Search/filter by table name * Misc cleanup * Fix population of selected columns * Ordering field should not be required * Enable cloning for TableConfig * Misc cleanup * Add model documentation for TableConfig * Drop slug field from TableConfig * Improve TableConfig validation * Remove add button from TableConfig list view * Fix ordering validation to account for leading hyphens
17 lines
635 B
Python
17 lines
635 B
Python
from .serializers_.objecttypes import *
|
|
from .serializers_.attachments import *
|
|
from .serializers_.bookmarks import *
|
|
from .serializers_.customfields import *
|
|
from .serializers_.customlinks import *
|
|
from .serializers_.dashboard import *
|
|
from .serializers_.events import *
|
|
from .serializers_.exporttemplates import *
|
|
from .serializers_.journaling import *
|
|
from .serializers_.notifications import *
|
|
from .serializers_.configcontexts import *
|
|
from .serializers_.configtemplates import *
|
|
from .serializers_.savedfilters import *
|
|
from .serializers_.scripts import *
|
|
from .serializers_.tableconfigs import *
|
|
from .serializers_.tags import *
|