Raymond Kalonji
Raymond Kalonji

Reputation: 345

Django NoReverseMatch error for deleted view and url

When I run the server for my local project, the browser displays the following:

""" NoReverseMatch at /

Reverse for 'posts.views.showusers' with arguments '()' and keyword arguments '{}' not found.

Request Method: GET """

Note that "posts" is an App. I have deleted anything related to showusers in posts/views.py and posts/urls.py. Why do I keep on seeing that message?

Upvotes: 0

Views: 155

Answers (1)

msc
msc

Reputation: 3800

Check in your templates that you're not using the url template tag for showusers.

Upvotes: 3

Related Questions