[Answer]-NoReverseMatch exception in a simple Django app

1👍

In your base urls.py you included app’s urls with namespace, so in template you should use namespace too.In your case:
<a href="{% url 'people:people_list' %}">Index</a>.

More about namespaces: https://docs.djangoproject.com/en/1.6/topics/http/urls/#url-namespaces.

Leave a comment