32👍
✅
You are importing LnkdIn.urls
twice to your application urlpatterns
.
You should only do it once, so choose either one from the section below
url(r'^LnkdIn/', include('LnkdIn.urls')),
or
url(r'^', include('LnkdIn.urls')),
Source:stackexchange.com