1👍
✅
Get rid of the $ in your url(r'^accounts/$', include('accounts.urls'),
call.
Note that the regular expressions in this example don’t have a $ (end-of-string match character) but do include a trailing slash.
https://docs.djangoproject.com/en/dev/topics/http/urls/#including-other-urlconfs
Source:stackexchange.com