Search code examples
djangodjango-registration

I am unable to install django registration


i tried installing django registration: http://django-registration.readthedocs.org/en/latest/ but i get an error: no module named registration

whenever i load my site.

what can I do?


Solution

  • You should add it to the INSTALLED_APPS list :

    Begin by adding registration to the INSTALLED_APPS setting of your project, and specifying one additional setting:

    ACCOUNT_ACTIVATION_DAYS This is the number of days users will have to activate their accounts after registering. If a user does not activate within that period, the account will remain permanently inactive and may be deleted by maintenance scripts provided in django-registration.

    This is from the required settings section : http://django-registration.readthedocs.org/en/latest/quickstart.html#required-settings