2016-05-25 7 views

答えて

2

テンプレートではなく、ビューでリダイレクトする必要があります。

from django.shortcuts import redirect 

def login(request): 
    if request.user.is_authenticated(): 
     return redirect('/next-url/') 
    ... 
関連する問題