This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
portail-citoyen2/portail_citoyen2/context_processors.py

8 lines
220 B
Python

from . import app_settings
def template_vars(request):
ctx = app_settings.TEMPLATE_VARS.copy()
if app_settings.PORTAIL_ADMIN_URL:
ctx['PORTAIL_ADMIN_URL'] = app_settings.PORTAIL_ADMIN_URL
return ctx