[Fixed]-Reverse for 'index' with arguments '()' and keyword arguments '{}' not found. 0 pattern(s) tried: []

15👍

Its complaining about line no.14 because Django is unable to determine the url named as “index” in your urls.py files. I don’t see a URL named as “index” above. Where/What is the URL pattern for your home page?

3👍

This happens when the URL match expression has a parameter but there are none passed in with the reverse in the template.

Leave a comment