1👍
✅
You have a stray reverse_lazy()
in your urlpatterns:
urlpatterns = patterns('',
url(r"^$", TemplateView.as_view(template_name = "homepage.html")),
reverse_lazy("homepage.html"),
👤knbk
Source:stackexchange.com