In the section Adding a Registration Page:
In this section, the following URL pattern is added to the contents of the urls.py file:
url( r’ ^ accounts/’, 20 include(’ registration.backends.simple.urls’)),
Later in the section the URL pattern changes to the following (“simple” replaced by “default” in the file path):
url( r’ ^ accounts/’, include(’ registration.backends.default.urls’)),
But, the changed statement is not highlighted. Is the change in the URL pattern intended?
In the subsection, Updating Your Registration Flow, the following lines of code are added to the views.py file:
72 # create the slug from our name
73 slug = slugify( name)
It seems these two lines of code are extraneous and should be removed.
Thanks.