Files
Diarios-Oficiais-ALEMS/diarios_oficiais_alems/users/context_processors.py

9 lines
225 B
Python
Raw Normal View History

2025-03-06 12:10:17 -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,
}