Files
benchcoach-django/benchcoach/users/context_processors.py
2022-06-01 15:30:52 -05:00

9 lines
225 B
Python

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,
}