[Fixed]-No Reverse Match when calling url from html file – Django

1👍

Have a look at the documentation

I think that when you include the url in urls.py you need to add a namespace

 url(r'^socialx/', include('socialx.urls', namespace="socialx")),

And make sure that the url for going to the index page has a name=index.

See if that helps.

👤NS0

Leave a comment