mirror of
https://github.com/netbox-community/netbox.git
synced 2026-01-25 04:50:00 -06:00
8 lines
133 B
Python
8 lines
133 B
Python
from django.conf import settings as django_settings
|
|
|
|
|
|
def settings(request):
|
|
return {
|
|
'settings': django_settings,
|
|
}
|