Files
Diarios-Oficiais-ALEMS/diários_oficiais_alems/users/context_processors.py
2025-03-06 12:10:17 -03: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,
}