1👍
✅
Your url pattern is matching an empty string:
url(r'^$', include('misc.urls')),
^
matches the beginning of a string, and $
matches the end, so only completely empty strings will work. As Dima points out in the comments, remove the $
and it will work.
Source:stackexchange.com