我有一个 django 应用程序,其中包含以下与注销相关的条目urls.py
:
(r'^logout/$', 'django.contrib.auth.views.logout', {'next_page':'/logout_page/'}),
(r'^logout_page/$', 'django.views.generic.simple.direct_to_template', {'template':'registration/logged_out.html'}),
我想在 中添加一个“重新登录”链接logged_out.html
,这需要我知道用户最初注销的位置(URL)。
如何在logout
调度程序条目中引用该 URL,以及如何将其传递给该logout_page
条目?
提前致谢