Login

Template context processor to make the settings.py values available in templates

Author:
tamizhgeek
Posted:
May 11, 2011
Language:
Python
Version:
1.3
Score:
2 (after 4 ratings)

The above snippet makes all of the settings.py variables accessible in templates. Add this to the context_processors.py file inside your app directory. After that add the below line to the TEMPLATE_CONTEXT_PROCESSORS in your settings.py.

'*app_name*.context_processors.access_to_settings'
1
2
3
4
from django.conf import settings                                                                                             
                                                                                                                             
def access_to_settings(request):
    return {'SETTINGS' : settings}

More like this

  1. get_object_or_none by azwdevops 3 months, 2 weeks ago
  2. Mask sensitive data from logger by agusmakmun 5 months, 1 week ago
  3. Template tag - list punctuation for a list of items by shapiromatron 1 year, 7 months ago
  4. JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 1 year, 7 months ago
  5. Serializer factory with Django Rest Framework by julio 2 years, 2 months ago

Comments

Please login first before commenting.