成功注册后,用户被重定向到模板“registration_complete.html”。
有没有办法改变这种行为,将用户重定向到注册页面并显示一条消息?
我想在registration_complete.html中做这样的事情:
{% include 'registration/registration_form.html' with message='Your account has been created. Please check your email for activation instructions' %}
但form
我在模板中使用的变量在此视图中不可用,因此未显示注册表单。此外,我不知道这是否是最好的方法。
编辑:
url(r'^register/$', 'registration.views.register',
{
'backend': 'trabam.apps.accounts.regbackend.Backend',
'form_class' : UserRegistrationForm,
'success_url': '/accounts/register'
},
name='registration_register'
),
注册完成后如何在模板中设置消息?