[Answered ]-Django – common data in every templates

2👍

Most of modern class based views do all job with RequestContext for you so you don’t need to worry. If you like old-style function based views – there’s a render function.

That “performance issue” is about specific django.core.context_processors.request. As long as you don’t use it – everything is fine.

👤ilvar

Leave a comment