Django auth: Where to put custom templates?
问题 I want to set up user authentication with Django (1.9). As described in the documentation I included the auth view in my project's urls.py like urlpatterns = [ ..., url('^accounts/', include('django.contrib.auth.urls')), ..., ] as the documentation describes, one needs to write custom templates for the Auth views. I put those templates in the directory myproject/templates/registration/ . The problem is now that these templates, since they follow the predefined naming convention, clash with