games/vote というページに、パス「add_title/」をアクションとして使用するフォームがあります。
<form method="post" action="add_title/" method="post">
関連するビューから以下を返します。
return render_to_response('games/votes.html', {'vote_list': not_owned_vote_list,},
context_instance = RequestContext(request))
ビューから戻ると、url は games/vote/add_title に残ります。
リクエストの path および path_info 属性を変更しようとしましたが、役に立ちませんでした:
request.path = "/games/vote/"
request.path_info = "/games/vote/"
Web ページに戻ったときにパスを /games/vote にしたい。
私は何を間違っていますか?