文档说:
``success_url``
The name of a URL pattern to redirect to on successful
acivation. This is optional; if not specified, this will be
obtained by calling the backend's
``post_activation_redirect()`` method.
我该怎么办?
答案 0 :(得分:7)
您可以在urls.py
中执行此操作,例如:
url(r'^account/activate/(?P<activation_key>\w+)/$', 'registration.views.activate', {'success_url': 'registration_activation_complete'}, name='registration_activate'),
url(r'^account/activate/success/$', direct_to_template, {'template': 'registration/activation_complete.html', name='registration_activation_complete'),
另一种方法是通过继承默认后端来创建自己的后端(比听起来更简单):
from registration.backends.default import DefaultBackend
class MyRegistrationBackend(DefaultBackend):
def post_activation_redirect(self, request, user):
# return your URL here
最简单的解决方案是只指定django-registration应使用的registration_activation_complete
网址格式。请参阅Django文档中的Naming URL patterns。