phantasmobile/app/utils.py

11 lines
236 B
Python
Raw Normal View History

2023-07-26 11:50:09 +02:00
from django.conf import settings
from .page.models import Page
def default_context(request):
context = {}
context['settings'] = settings
2023-07-27 09:20:30 +02:00
context['overlay'] = Page.objects.filter(slug="overlay").first()
2023-07-26 11:50:09 +02:00
return context