Can I change the following code:
urlpatterns = [
...
url(r'^accounts/', include('allauth.urls')),
...
]
to :
urlpatterns = [
...
url(r'^something_else/', include('allauth.urls')),
...
]
since I already have an app accounts
in my django projects?
Is the name accounts
deeply integrated with django-allauth
source code?