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