mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
14 lines
339 B
Python
14 lines
339 B
Python
from django.conf import settings as django_settings
|
|
|
|
from extras.registry import registry
|
|
|
|
|
|
def settings_and_registry(request):
|
|
"""
|
|
Expose Django settings and NetBox registry stores in the template context. Example: {{ settings.DEBUG }}
|
|
"""
|
|
return {
|
|
'settings': django_settings,
|
|
'registry': registry,
|
|
}
|