9 lines
225 B
Python
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,
|
|
}
|