Files
interchan/board/context_processors.py

6 lines
118 B
Python
Raw Normal View History

from django.conf import settings as django_settings
def settings(request):
return {"settings": django_settings}