1

可能重复:
如何在基于类的通用视图中访问 RequestContext?

我正在使用 django-registration,它使用django.contrib.auth.views.auth_logindjango.contrib.auth.views.auth_login视图来提供登录和注销。但是,当它呈现我的registration/login.html 和registration/logout.html 模板时,RequestContext不包括在内。RequestContext在没有猴子补丁的情况下获得这些模板的最佳方法是什么?

4

1 回答 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 回答