django-registration - Django灵活的用户账号服务app

项目地址:

http://code.google.com/p/django-registration/

新: http://bitbucket.org/ubernostrum/django-registration/wiki/Home

 

 

项目简介:

提供一个现成的用户账号服务过程。包括用户注册、激活,登录,密码修改,密码重设等。同时提供了很多灵活的修改方式。

用户只需要提供相应的模板文件,不需要编写任何程序代码就可以获得完整的用户账号服务功能。

 

This is a simple application which provides flexible user registration for Django-based projects. The default setup implements a fairly common workflow:

  1. User signs up for account.
  2. User receives an email containing instructions for activating the account.
  3. User activates and begins using the site.

This application assumes that you are already have a working installation of Django 1.0 or newer, and that you are comfortable enough with Django to be able to, for example, create templates based on a description of what context variables are available to them, set up your own URL configuration and work with Django's forms system.

 

 

类似项目:

django-profiles: http://www.bitbucket.org/ubernostrum/django-profiles/wiki/

 

其他信息:

需要提供的完整的模板文件列表如下:

activate.html
activation_email.txt
activation_email_subject.txt
base.html
login.html
logout.html
password_change_done.html
password_change_form.html
password_reset_complete.html
password_reset_confirm.html
password_reset_done.html
password_reset_email.html
password_reset_form.html
registration_complete.html
registration_form.html

 

至于具体被使用的view及提供的context,可以参看源代码。

你可能感兴趣的:(html,workflow,django,Google,UP)