This section contains information about how to configure your Django projects to use django-email-change and also contains a quick reference of the available settings that can be used in order to customize the functionality of this application.
In the Django project’s settings module, add email_change to the INSTALLED_APPS setting:
INSTALLED_APPS = (
...
'email_change',
)
django-email-change requires that you update your project’s URL patterns by adding the application’s own URL set. In your project’s urls module add the following patterns:
urlpatterns = patterns('',
...
# URLs for django-email-change
url('accounts/', include('email_change.urls')),
...
)
The following settings can be specified in the Django project’s settings module to customize the functionality of django-email-change.
Finally, synchronize the project’s database using the following command:
python manage.py syncdb