I have two urls:
url(r'^users/', include('apps.users.urls', namespace='users')),
url(r'^accounts/', include('allauth.urls')),
the first one /users I can see through the path apps.users.urls where is located, but the second one is not in the folders path, how can I know where is located the allauth.urls
 
    