django-allauth configuration doubts
问题 I'm using django-allauth with Django 1.5.1 and I have a few questions when setting it up: 1. Configure urls.py The docs says that you have to add the following to urls.py file: urlpatterns = patterns('', ... (r'^accounts/', include('allauth.urls')), ... ) The problem is that I already have a custom app called accounts and I already use the following URL pattern: (r'^accounts/', include('accounts.urls')), So I have a naming collision here with the accounts/ regex URL. My question is: can I