[Fixed]-AttributeError: '__proxy__' object has no attribute 'regex'

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

Leave a comment