1👍
✅
When you add a processor to settings it is passed in every view.
If you want only in a single view remove from settings and use what I have above:
request_context = RequestContext(request,
processors=[setting_processor])
return render(request, 'settings.html', context, context_instance=request_context)
👤Atma
Source:stackexchange.com