backend/image_markuper/users/context_processors.py

9 lines
225 B
Python
Raw Normal View History

2022-10-25 23:29:13 +03:00
from django.conf import settings
def allauth_settings(request):
"""Expose some settings from django-allauth in templates."""
return {
"ACCOUNT_ALLOW_REGISTRATION": settings.ACCOUNT_ALLOW_REGISTRATION,
}