8 lines
116 B
Python
8 lines
116 B
Python
from django.conf import settings
|
|
|
|
|
|
def settings_processor(request):
|
|
return {
|
|
"settings": settings
|
|
}
|