[Django]-Caught AttributeError while rendering: tuple object has no attribute regex

6👍

You forgot patterns around the second set of URL patterns. It should look like this:

urlpatterns += patterns('django.contrib.auth.views', 

Leave a comment