phantasmobile/app/utils.py

11 lines
232 B
Python
Raw Normal View History

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