django-nonrel
Django – How to make a variable available to all templates?
What you want is a context processor, and it’s very easy to create one. Assuming you have an app named custom_app, follow the next steps: Add custom_app to INSTALLED_APPS in settings.py (you’ve done it already, right?); Create a context_processors.py into custom_app folder; Add the following code to that new file: def categories_processor(request): categories = Category.objects.all() … Read more