Is there a way I can access current context passed by view in custom context processor so I can add missing variable if I want rather than overriding existing variable ?
What I'm trying to Achieve:
I construct my URL's like this /city_slug/ and I want to check if city variable already exist in context, otherwise I want to add city to my context (may be using the last used city stored in session variable otherwise default to some city and may be even set session variable for next use.)
I think this is very common problem, How do you guys solve it ?