我正在使用 django-registration,它使用django.contrib.auth.views.auth_login
和django.contrib.auth.views.auth_login
视图来提供登录和注销。但是,当它呈现我的registration/login.html 和registration/logout.html 模板时,RequestContext
不包括在内。RequestContext
在没有猴子补丁的情况下获得这些模板的最佳方法是什么?
问问题
229 次
1 回答
0
Per Alex's comment, adding the following worked:
TEMPLATE_CONTEXT_PROCESSORS = (
# ... other context processors here
'django.core.context_processors.request',
)
于 2012-09-19T16:59:11.647 回答