我的 URLconf 包含这种模式:
url(r'^accounts/logout/$','django.contrib.auth.views.logout', name="logout"),
我试图在带有这样的 URL 标记的模板中反转它:
<a href="{% url logout next_page=request.path %}">logout</a>
但我不断收到以下错误:
Reverse for 'logout' with arguments '()' and keyword arguments '{'next_page': u'/first-page/child/'}' not found
我认为django.contrib.auth.views.logout
应该采用选项next_page
参数。我确定我遗漏了一些明显的东西,但我不确定它是什么。