You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

context_processors.py 308B

12345678
  1. from django.conf import settings
  2. def metadata(request):
  3. return {'version': getattr(settings, 'VERSION', 'N/A'),
  4. 'shop_name': settings.OSCAR_SHOP_NAME,
  5. 'shop_tagline': settings.OSCAR_SHOP_TAGLINE,
  6. 'google_analytics_id': getattr(settings, 'GOOGLE_ANALYTICS_ID', None)}