Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经在 django 1.3 上安装了 django-registration,我无法让它工作。
当我在帐户/注册/页面上点击提交时,它会重定向到不在默认 URL 中的帐户/注册。
我似乎无法将我的帖子数据传递给注册函数。帮助?
您的 urls.py 是否有:
import registration ... urlpatterns += patterns( url(r'^accounts/', include('registration.backends.default.urls')), )
您是否在模板目录中安装了所有适当的模板?
https://github.com/yourcelf/django-registration-defaults