我的URLconf包含以下模式:Django的「網址」模板標籤錯誤
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
參數。我確信我錯過了一些明顯的東西,但我不確定它是什麼。
非常感謝。不知道我是如何忽視REDIRECT_FIELD_NAME的。 – saturdayplace 2009-09-03 16:05:57