aboutsummaryrefslogtreecommitdiff
path: root/app/dispatch/context_processors.py
blob: d6d50d5c55863b193acf237bebc0ab0e8d294d14 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
from django.conf import settings


def additional_template_vars(request):
    """
    A neat little hack to load up
    additional variables into templates directly into the templates
    """
    return {"template_vars": settings.TEMPLATE_VARS}