shiftregister/shiftregister/app/context_processors.py

12 lines
280 B
Python

from django.conf import settings
from .models import LoginToken
# enhance template contexts with frequently used data so we have less code duplication
def proc(request):
context = {
"DEBUG": settings.DEBUG,
"helper": request.helper,
}
return context