1
登録後にユーザーをリダイレクトしようとしています。現在はメインページ「/」にリダイレクトされています。私はRegistrationViewを拡張しようとしましたが、まだ動作していません。ここに私の現在のコードは次のとおりです。登録時のジャンゴ登録のリダイレクト
views.py
from registration.views import RegistrationView
class RegView(RegistrationView):
def get_success_url(self, user):
success_url = '/trips/'
return success_url
urls.py
url(r'^accounts/register/$', RegView.as_view(), name='registration_register'),
url(r'^accounts/', include('registration.backends.simple.urls')),
私はビューを拡張し、右ページにリダイレクトすることができる方法上の任意の助けいただければ幸いです!
あなたのURLの 'url(r '^ accounts/register/$'、RegView.as_view()、name = 'registration_register'のように' {'next_page': '/ go/here/、{'next_page': '/ go/here /'}) ' – kapilsdv