重定向到django中的另一个页面

时间:2015-07-03 06:16:45

标签: python django django-views

我想在页面post_list中重定向,但它会重定向到同一页面。

def registration(request):
    if request.POST:
        form = MyRegistrationForm(request.POST)
        print request.POST
        print form.errors
        if form.is_valid():
            form.save()
            return redirect('site1/post_list/')
    else:
        form= MyRegistrationForm()
    return render(request,'registration.html',{'form':form})

0 个答案:

没有答案