[Answer]-How can I make imports that will satisfy django-registration's 'activate' and 'register' calls?

1👍

You’ve misread that page. Those aren’t lines you add to your urlconf, they are already defined in django-registration’s urls.py. You just need to include them as shown in step 4:

(r'^accounts/', include('registration.urls')),

Leave a comment