1👍
✅
You have a typo:
url('r^$', ListView.as_view(
The r
should be in front of the '
. Change the line to this:
url(r'^$', ListView.as_view(
Source:stackexchange.com