[Answered ]-Django do not return newest content in homepage views with lots of extra_context

2👍

That’s because your content is evaluated only once: when urls.py is imported. I think you need a normal view here. Or you can pass callables (or other lazy objects) to context, not evaluated ones.

Leave a comment