Prevent Django DetailView from adding template context with name of object
I have a DetailView
for users, and it seems to be adding a user
context variable. This is problematic because I have an application-wide context variable, user
that contains the current user that is being overridden. How can I prevent the DetailView from adding this context variable?