mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
* WIP * Add config_template field to Device * Pre-fetch referenced templates * Correct up_to_date callable * Add config_template FK to Device * Update & merge migrations * Add config_template FK to Platform * Add tagging support for ConfigTemplate * Catch exceptions when rendering device templates in UI * Refactor ConfigTemplate.render() * Add support for returning plain text content * Add ConfigTemplate model documentation * Add feature documentation for config rendering
31 lines
592 B
Python
31 lines
592 B
Python
from .change_logging import ObjectChange
|
|
from .configs import *
|
|
from .customfields import CustomField
|
|
from .models import *
|
|
from .search import *
|
|
from .staging import *
|
|
from .tags import Tag, TaggedItem
|
|
|
|
__all__ = (
|
|
'Branch',
|
|
'CachedValue',
|
|
'ConfigContext',
|
|
'ConfigContextModel',
|
|
'ConfigRevision',
|
|
'ConfigTemplate',
|
|
'CustomField',
|
|
'CustomLink',
|
|
'ExportTemplate',
|
|
'ImageAttachment',
|
|
'JobResult',
|
|
'JournalEntry',
|
|
'ObjectChange',
|
|
'Report',
|
|
'SavedFilter',
|
|
'Script',
|
|
'StagedChange',
|
|
'Tag',
|
|
'TaggedItem',
|
|
'Webhook',
|
|
)
|