[Fixed]-NoReverseMatch at / error in django after url template tag usage

1👍

The app_name you provided will be used as the namespace for the urls. You should include that in the tag like so:

href="{% url 'actual_app_name:index' %}"

See URL namespaces and included URLconfs.

Leave a comment