Source code for annotations.context_processors
from django.conf import settings
[docs]def google(request):
return {'google_analytics_id': getattr(settings, 'GOOGLE_ANALYTICS_ID', None)}
[docs]def version(request):
return {'VERSION': getattr(settings, 'VERSION', None)}